Home › Forums › WoodMart support forum › Product infinite scrolling not working with wp rocket › Reply To: Product infinite scrolling not working with wp rocket
March 8, 2024 at 3:50 pm
#547441
Javi24
Participant
If I use rank math breadcrumbs then not work:
https://vimeo.com/921091992/22ff9f138f?share=copy
/**
* Rank Math breadcrumbs
*/
function woodmart_current_breadcrumbs( $type ) {
if ( function_exists( ‘rank_math_the_breadcrumbs’ ) ) {
rank_math_the_breadcrumbs();
} else {
$function = ( $type == ‘shop’ ) ? ‘woocommerce_breadcrumb’ : ‘woodmart_breadcrumbs’;
$function();
}
}