Title: Goran breadcrumbs
Last modified: August 31, 2016

---

# Goran breadcrumbs

 *  Resolved [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/goran-breadcrumbs/)
 * Hello,
 * I’m wondering whether someone can help me with what must be a simple question,
   but I can’t figure it out.
 * When I have Goran’s helpful breadcrumbs menu visible, I have 2 “home” categories
   in the menu, both of which seem to point to my home page. I’ve tried removing
   the page title (which I’ve named “home”) on my homepage, but I still get a blank
   sub-category under the “home” tag in the menu.
 * Here is a link to my site on a test server, pointing to a page with the breadcrumbs
   visiible.
    [http://www.100hands.org/scottys/scottys-construction/projects/](http://www.100hands.org/scottys/scottys-construction/projects/)
 * I’d just like to see one occurrence of the “home” category in the menu string.
 * Thanks for any help.

Viewing 11 replies - 1 through 11 (of 11 total)

 *  [Siobhan](https://wordpress.org/support/users/siobhyb/)
 * (@siobhyb)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387580)
 * Hi [@essbeeay](https://wordpress.org/support/users/essbeeay/)!
 * Have you set “projects” to be a child page of either “scottys” or “scottys construction?”
   If so, can you please un-assign the parent page from “projects” and see if that
   resolves the duplication?
 * Let me know how you get on with that.
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387629)
 * I said it must be a simple question.
 * Sorted.
 * Thanks so much!
 *  [Siobhan](https://wordpress.org/support/users/siobhyb/)
 * (@siobhyb)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387687)
 * You’re most welcome! I’m glad that helped.
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387764)
 * I’ve had to come back to this, as I still have a problem here. My home page uses
   Goran’s GRID PAGE template. I want to display child pages on the homepage. This
   all works great.
    [http://www.100hands.org/scottys/](http://www.100hands.org/scottys/)
 * But, now any child page off the home page has a new directory that takes the 
   site’s title (Scotty’s Construction) and gives me 2 home directories on my breadcrumbs.
   See it here:
    [http://www.100hands.org/scottys/scottys-construction/projects/](http://www.100hands.org/scottys/scottys-construction/projects/)
 * I don’t want to use Goran’s FRONT PAGE template for my home page, as I prefer
   the way the GRID template works.
 * Any ideas?
 * Thanks.
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387765)
 * This custom CSS should remove one of the duplicate “Home” links:
 *     ```
       .entry-breadcrumbs .home-link {
         display: none;
       }
       ```
   
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387767)
 * Yep, that works. Just have to go through on a page-by-page basis and add the 
   code.
 * Thank you!
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387768)
 * You shouldn’t need to add this more than once, the CSS I gave you isn’t page-
   specific. Once you add it in your custom CSS editor it should apply to all pages
   where the breadcrumbs are active.
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387769)
 * When I added it in site wide css I got no home link at all in the breadcrumbs.
   I will take another look though.
    Thanks.
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387771)
 * I looked again, and if I hide .home-link, pages which aren’t already a child-
   page of the home page will have no HOME link in the breadcrumbs.
 * So it is the second incidence of the HOME which I need to hide in breadcrumbs,
   which only happens on pages which are children or grandchildren to the home page.
 * So I can remove them with your CSS on each page.
 * Is there any other way to remove this problem?
 * Thanks.
 *  Moderator [Kathryn Presner](https://wordpress.org/support/users/zoonini/)
 * (@zoonini)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387772)
 * The second instance of “Home” doesn’t have a unique class you can target with
   CSS to hide it, as you can see here:
 *     ```
       <nav class="entry-breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
       <span itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="http://www.100hands.org/scottys/" rel="home"><span itemprop="name">Home</span></a></span>
       <span itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="http://www.100hands.org/scottys/"><span itemprop="name">Home</span></a></span>
       <span class="current-page" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><span itemprop="name">Testimonials</span></span>
       </nav>
       ```
   
 * One option is to hide all the breadcrumbs:
 *     ```
       .entry-breadcrumbs {
        display: none;
       }
       ```
   
 * Another option is to hide the second item on all child pages, but I think that
   still targets too many pages:
 *     ```
       .page-child nav.entry-breadcrumbs span:nth-child(2) {
         display: none;
       }
       ```
   
 * You might instead try targeting specific pages using their unique page ID. For
   example, this would hide the second breadcrumb item on all pages that have page
   ID 9 — [http://www.100hands.org/scottys/](http://www.100hands.org/scottys/) —
   as its parent, such as the Testimonials page:
 *     ```
       .parent-pageid-9 .entry-breadcrumbs .home-link {
         display: none;
       }
       ```
   
 * Still another option is not to make pages children of the homepage.
 *  Thread Starter [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * (@essbeeay)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387773)
 * Thank you!

Viewing 11 replies - 1 through 11 (of 11 total)

The topic ‘Goran breadcrumbs’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/goran/1.2.5/screenshot.png)
 * Goran
 * [Support Threads](https://wordpress.org/support/theme/goran/)
 * [Active Topics](https://wordpress.org/support/theme/goran/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/goran/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/goran/reviews/)

 * 11 replies
 * 3 participants
 * Last reply from: [ESSBEEAY](https://wordpress.org/support/users/essbeeay/)
 * Last activity: [10 years, 1 month ago](https://wordpress.org/support/topic/goran-breadcrumbs/#post-7387773)
 * Status: resolved