Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author John Havlik

    (@mtekk)

    Hi!
    And could you say how can i remove breadcrumb from pages of bbpress?

    Thanks for posting the FAQ link that explains how to exclude breadcrumbs from showing on the home page, John. Worked great. Wanted to also post our side discussion about how to hide selective other pages – for example a Thank You page that doesn’t fit into the normal nav and for which you may want to exclude breadcrumbs. This is based on the modeling you did, and it worked for me:

    <br />
    <div class="breadcrumbs"><br />
        <?php if(function_exists('bcn_display') && !is_front_page() && !is_page('thank-you-for-your-rate-tracker-subscription') && !is_page('thank-you'))<br />
        {<br />
            bcn_display();<br />
        }?><br />
    </div><br />

    The above example excludes breadcrumbs from showing on the Home page and 2 thank you pages. Obviously, the “thank-you-for-your-rate-tracker-subscription” and the “thank-you” would be replaced with the name or slug of your own site pages.

    Thanks for all your efforts in developing and supporting an awesome plugin.

    Thread Starter deliwasista

    (@deliwasista)

    Excellent! thanks spkane that looks quite useful too!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: Breadcrumb NavXT] How do you remove the breadcrumbs from the home page?’ is closed to new replies.