• Resolved aeonsv

    (@aeonsv)


    Hello, on every product over the title have tree path like Home/Category/product.html

    How i can hide this tree with links over the title ?

    Screenshot:

    https://ibb.co/h7vc5TT

    • This topic was modified 1 year, 3 months ago by aeonsv.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi
    Please add this function in your active theme’s functions.php file

    add_action('template_redirect', 'ahirwp_remove_product_breadcrumbs' );
    
    function ahirwp_remove_product_breadcrumbs(){
        if (is_product()) {
            remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
        }
    }
    

    Thanks
    Ahir

    Thread Starter aeonsv

    (@aeonsv)

    Work perfect, thank you Ahir.

    Hi @aeonsv

    We’re glad that everything is working now using the code shared.

    I’m going to mark this thread as resolved, but please don’t hesitate to start a new topic if you have any more questions down the line.

    Have a fantastic day!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to hide path on single product’ is closed to new replies.