badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Breadcrumb not displaying

Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #41582
    therunawayjudge
    Participant

    Hello, is the breadcrumb just a interface pro feature? It’s not displaying for me on the free version of interface:

    unityconsultants.co.uk

    No mention in the documentation or free or pro versions and nothing in the source (class=”breadcrumb”)

    Great theme, thank you!

    #41614

    Hi therunawayjudge,

    No. for breadcrumbs you need to install NavXT breadcrumbs plugins.

    Hope this may help you
    Thank you!

    #86890
    themehorse6
    Participant

    Hello Support Team,

    how can i implement breadcrump like this: https://www.themehorse.com/preview/interface/html-styles/

    Thanks

    #86910

    Hi @themehorse6.

    For this you have to install the Breadcrumb NAVXT plugin.
    See the above reply for the plugin download link.

    Thank you!

    #86912
    themehorse6
    Participant

    and without NAVXT???
    i like to use the breadcrum from yoast seo tool LINK
    like this:

    ?php
    if ( function_exists('yoast_breadcrumb') ) {
      yoast_breadcrumb( '<p id="breadcrumbs">','</p>' );
    }
    ?>

    at which point do I have to insert the code

    thank you!

    #87278

    Hi @themehorse6,

    To use the yoast breadcrumb just go to the theme main directory > inc > header-extension.php file on line no:460 you will see below line of code:

    if ( function_exists( 'bcn_display' ) ) {
    	echo '<div class="breadcrumb">';
    		bcn_display();
    	echo '</div> <!-- .breadcrumb -->';
    }

    just replace the above code with below one

    if ( function_exists('yoast_breadcrumb') ) {
      yoast_breadcrumb('<p id="breadcrumbs">','</p>');
    }

    Note:We recommended you to customize the theme main code by creating a child theme rather than editing direct in the theme main code.

    Thank you!

    #87292
    themehorse6
    Participant

    👍

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