Okay
  Public Ticket #2235115
Breadcrumbs and hide product category
Closed

Comments

  •  1
    Mamadou started the conversation

    Hi ,

    I have several questions:

    • How can i add a breadcrumb on my website ?
    • I have added some products on my homepage but can i make a product caroussel from one product category? The product caroussel module seems to work, it can"t find the category when i build the request


    Thank you for your help Ylli ;)

  • [deleted] replied

    Hi Mamadou,

    1—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.

    2— You need to use Taxonomies area to filter a product category as we explained in this article.

    Have a nice day!