• Resolved powerj

    (@powerj)


    Trying to add ‘Shop’ to the single page breadcrumb – Not sure why it wouldn’t be there standard. This filter isn’t working Many thanks

    add_filter( 'genesis_single_crumb', 'wt_add_shop_to_breadcrumb', 10, 2 );
    function wt_add_shop_to_breadcrumb( $crumb, $args ) {
    if (is_product()) {
    return 'test' . ' ' . get_the_title();
    }
    }
    

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter powerj

    (@powerj)

    Ahh filter is add_filter( ‘gencwooc_single_product_crumb’, ‘wt_add_shop_to_breadcrumb’, 10, 2 );

Viewing 1 replies (of 1 total)
  • The topic ‘Product breadcrumb doesn’t include ‘Shop’’ is closed to new replies.