Questions tagged [breadcrumbs]

A navigation aid used in user interfaces

Breadcrumbs or breadcrumb trail is a navigation aid used in user interfaces. It allows users to keep track of their locations within programs or documents.

1154 questions
3
votes
1 answer

Laravel breadcrumbs with 2 parameters

I have a route that is dependent on 2 parameters: Route::get('{place}/{treatment}', 'ClinicController@showResults')->name('clinic.search.results'); I am wanting to show the breadcrumb of this result as: Home -> {Place} -> {Treatment} But…
user860511
3
votes
3 answers

React router v4 breadcrumbs

I am trying to implement React Router Breadcrumbs for v4 Following are my routes: const routes = { '/': 'Home', '/page1': 'Page 1', '/page2': 'Page 2' }; I could put the breadcrumbs using this library in my application,…
Akshay Lokur
  • 6,680
  • 13
  • 43
  • 62
3
votes
4 answers

Remove the "Products tagged" from Woocommerce Tag Archive Breadcrumbs

In my Storefront wordpress I'm using the woocommerce product tags to display my products in an alternative way. On the tag archive pages the breadcrumb says Home > Products tagged “Example Tag” or rather Startseite > Produkte verschlagwortet mit…
mediamarx
  • 31
  • 3
3
votes
2 answers

How to add breadcrumb to Product in Schema.org?

The product page of my website has a breadcrumb. The Product type has not breadcrumb. I do this: "@type": "Webpage", "breadcrumb": {... "mainEntity": { "@type": "Product", ... Am I right? (I used "@type": "Webpage" only for…
Maral
  • 99
  • 1
  • 4
  • 10
3
votes
1 answer

JavaScript - Express JS - Dynamic Breadcrumbs Creation (Name + URL)

I would like to create some middleware (Server Side) that will automatically generate breadcrumbs and pass the through to the client. I am using handlebars for a template engine and express for my routing. Say I have a route like this: /* GET home…
user3180997
  • 1,836
  • 3
  • 19
  • 31
3
votes
2 answers

RoutablePageMixin and breadcrumbs

A standard Wagtail breadcrumb system like this works perfectly if all of your pages are in a tree (parents/children): {% block main %} {% if self.get_ancestors|length > 1 %}
shacker
  • 14,712
  • 8
  • 89
  • 89
3
votes
2 answers

routing and breadcrumbs in Angular2

I tried a few breadcrumb approaches and they seem useless out of the box since most of my routes do not include enough information. for example: /products /product:id /subproudcts:productId /subproductdetail:subproductId each of these paths is a…
Sonic Soul
  • 23,855
  • 37
  • 130
  • 196
3
votes
1 answer

Drupal 8 Site Page Hierarchy

I've been building a Drupal 8 site over the past month that should have a stupid simple page hierarchy similar to this: Parent Page --Child Page --Child Page ----Grandchild Page ----Grandchild Page ----Grandchild Page Parent Page --Child…
user1930581
  • 1,465
  • 1
  • 13
  • 23
3
votes
1 answer

How do Sphinx configurations setup "breadcrumbs"?

How do Sphinx configurations setup "breadcrumbs" in the header? I have a Sphinx project and all I see is the project name; if I jump down into subpages I get lost and I don't see the path to the current page. Some examples in the…
Jason S
  • 184,598
  • 164
  • 608
  • 970
3
votes
2 answers

How to set breadcrumbs for an article in Schema.org?

Using Schema.org, I would like search engines to read the breadcrumbs of my articles. However, BreadcrumbList is part of a WebPage but not a part of an Article. I can add a WebPage object to each article, but it seems a bit redundant and I'm not…
Ronen Teva
  • 1,345
  • 1
  • 23
  • 43
3
votes
3 answers

Trimming a breadcrumb

I'm currently struggling with the problem of trimming a breadcrumb navigation so it doesn't destroy my site's design. The problem is the following: The breadcrumb navigation has a fixed width (let's say 900px) - So, if the user navigates to an item…
F.P
  • 17,421
  • 34
  • 123
  • 189
3
votes
3 answers

Why does Google require "image" for breadcrumbs?

Why does Google require an image (in the sample I see icon) for a breadcrumb? See Google breadcrumb document.
Lovntola
  • 1,409
  • 10
  • 31
3
votes
1 answer

Is the homepage required for Schema.org breadcrumbs?

I'm using the Schema.org markup for the breadcrumbs on the website I'm working on. I included the homepage at first, but noticed Google is showing site.com/ > Home > Pagetitle. That's why I excluded the homepage and added a WebSite type so Google…
Tom
  • 869
  • 6
  • 25
3
votes
2 answers

Magento display the search query along with the breadcrumbs

In my site I need to display breadcrumbs like this. Home / Search results for: 'laptop' / Lenova G50 Laptop I am searching any products (like above 'laptop') in site. After get result I click any products in search result page. That clicked…
VijayS91
  • 1,535
  • 23
  • 38
3
votes
2 answers

Breadcrumb trail with react js

I'm trying to create my own custom breadcrumb trail component using react js. I'm familiar with react js. But I have no clear idea about how to do that.. (Specially about breadcrumb trail). Can anyone give me some examples or tutorials relevant…
Harshitha Palihawadana
  • 2,171
  • 2
  • 15
  • 20