Senior Full Stack Developer
May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

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.