Senior Full Stack Developer
December 2024
M T W T F S S
 1
2345678
9101112131415
16171819202122
23242526272829
3031  

Categories


Woocommerce product image lightbox not working

MubashirMubashir

If you are using woocommerce version 3.x and you don’t see wooocomemrce product image zooming and lightbox functionality with your custom woocommerce theme then you need to add the support for woocommerce product zooming and lightbox functionality because woocomemrce do not enque these scripts for you in the default.

So in order to add product image zooming and lightbox functionality simply add the following code into your theme functions.php file

function my_theme_woocommerce_support()
{
add_theme_support('wc-product-gallery-zoom');
add_theme_support('wc-product-gallery-lightbox');
add_theme_support('wc-product-gallery-slider');
}

add_action('after_setup_theme', ' my_theme_woocommerce_support');

 

Comments 0
There are currently no comments.