Senior Full Stack Developer
April 2024
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  

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.