Breaking Carousel
-
The below action in the plugin:
add_action( ‘woocommerce_after_shop_loop_item’, ‘gtm4wp_woocommerce_after_shop_loop_item’ );
Is breaking a carousel on the website as it is inserting an extra HTML element that the carousel is treating as a slide.
I can manually change it to:
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘gtm4wp_woocommerce_after_shop_loop_item’ );
But this means modifying the plugins core code. Is there another way around this so that my change sticks when the plugin is updated?
Viewing 14 replies - 1 through 14 (of 14 total)
Viewing 14 replies - 1 through 14 (of 14 total)
- The topic ‘Breaking Carousel’ is closed to new replies.