Okay
  Public Ticket #2475075
Breadcrupms
Closed

Comments

  •  27
    kaPuh started the conversation

    Is it possible to have Breadcrumps with Kalium?

    If not, which Plugin works well with Kalium?


    Thanks

  • [deleted] replied

    Hi kaPuh,

    For the moment you can use Breadcrumb NavXT plugin to enable that functionality. When you install the plugin please make sure to add this code in the functions.php file of your theme too:

    add_action( 'kalium_header_main_heading_title_before', function() {
        if ( ! function_exists( 'bcn_display' ) ) {
            return;
        }
        if(!is_front_page() && !is_page('home-business')) {
            echo '<div class="container"><div class="site-breadcrumb">' . bcn_display( true ) . '</div></div>';    
        }
    } );

    so the breadcrumbs will appear. Then you can tweak the options of the plugin to fit your needs.

    P.S: We will release Kalium 3.1 soon and it will have a much better support  for Breadcrumbs. And you don't need to add that code on your functions.php file, stay tunedsmile.png 

    Have a nice day!

  •  27
    kaPuh replied

    Superbe! 

    Merci, Ka

  • [deleted] replied

    Happy to hear thatsmile.png

    Will set this ticket as solved from here.