[Support request] Yoast Breadcrumbs not showing

Home Forums Support [Support request] Yoast Breadcrumbs not showing

Home Forums Support Yoast Breadcrumbs not showing

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #373918
    michael

    Yoast Breadcrumbs are enabled but not showing on posts or pages?

    #373984
    Tom
    Lead Developer
    Lead Developer

    Have you added their required code into the hook you want it to show up?: https://generatepress.com/forums/topic/breadcrumbs-by-yoast-how-to-exclude-particular-pages/#post-356732

    #374053
    michael

    Ok git it! However, “Home” is showing up on my front Home page. How do I exclude breadcrumbs from blog postspage (the site front page), or static page (the page assigned to display the site front page)?

    Thanks again

    #374063
    Tom
    Lead Developer
    Lead Developer

    There might be some settings related to that inside Yoast 🙂

    #374087
    michael

    Tom I dont see any settings in Yoast to remove breadcrumbs from a static homw page”page. Only from Showing in a “Blog page”.

    #374092
    michael

    I added a snippet to the front page in Simple CSS #breadcrumbs{display: none;}. It works but there should be a better solution. Right?

    #374230
    Tom
    Lead Developer
    Lead Developer

    Ahh, are you wanting to remove the entire breadcrumb area on the home page?

    If so, do this:

    .home #breadcrumbs {
        display: none;
    }
    #390936
    Quan

    hi, i removed Breadcrumbs on homepage. But the background still there. how can i remove it?
    screenshot:http://prntscr.com/gp2bmd

    i use this code for hook

    <?php if ( function_exists('yoast_breadcrumb') ) { ?>
    	<div class="grid-container grid-parent">
    		<div class="page-header">
    			<?php yoast_breadcrumb('<p id="breadcrumbs">','</p>'); ?>
    	
    		</div>
    	</div>
    <?php } ?>

    please help, thank you

    #391037
    Tom
    Lead Developer
    Lead Developer

    Replace this: <div class="grid-container grid-parent">

    With this: <div class="grid-container grid-parent breadcrumb-container">

    Then use this CSS instead:

    .home .breadcrumb-container {
        display: none;
    }
    #391039
    Leo
    Staff
    Customer Support

    Looks like it might be the header padding?
    https://docs.generatepress.com/article/header-padding/

    If this doesn’t work can you provide a link to your site? Thanks!

    #391263
    Quan

    It’s working! Thank you

    #391308
    Leo
    Staff
    Customer Support

    No problem!

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.