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');