0
Jade Taylor
Hi,
Just wondering if the Woocommerce Products Slider is Compatible with Quick View Plugins or more so YITH woocommerce quick view plugin?
Regards
Jade
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum.
Sorry there is not integratin with YITH woocommerce quick view plugin, but you can solve with filter hook provided by our plugin, please see the filter hook here
https://pickplugins.com/documentation/woocommerce-products-slider/action-hooks/wcps_layout_element_id/
and here is the code you need to add your theme functions.php file , this will display quick view link just under product title, if you want to display other items please see other filter hook.
function wcps_grid_items_YITH_quick_view($html){ $product_id = get_the_id(); return $html.do_shortcode('[yith_quick_view product_id="'.$product_id.'"]'); } add_filter('wcps_filter_title','wcps_grid_items_YITH_quick_view');
Regards