Senior Full Stack Developer
November 2024
M T W T F S S
 123
45678910
11121314151617
18192021222324
252627282930  

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.