Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #700009

    I have switched off the breadcrums in the enfold panel for the whole website
    I there a css code to make the breadcrumbs visible ONLY on the woocommerce shop pages?

    #700700

    Hi Gilbert,

    I’m not sure if that would be possible but send us a link to your site and we’ll have a closer look at it.

    Best regards,
    Rikard

    #700707
    #701163

    Hi!

    Yes, it’s possible but you need change Title and Breadcrumbs header from Hide Both to Breadcrumbs only and add this in Quick CSS:

    .empty_title.title_container {
        display: none;
    }
    
    .woocommerce-page .empty_title.title_container {
        display: block;
    }

    you might to clear cache for it to take effect, if it doesn’t work you may try this code instead:

    .empty_title.title_container {
        display: none !important;
    }
    
    .woocommerce-page .empty_title.title_container {
        display: block !important;
    }

    Hope this helps :)

    Cheers!
    Nikko

    #701204

    thanxs Nikko.

    it works flawless

    #701237

    Hi CelebrationEvents!

    Glad we could help :)

    Cheers!
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Display breadcrumbs only in Woocomerce Shop’ is closed to new replies.