Home › Forums › WoodMart support forum › Variation products, dosnt show image gallery for variations › Reply To: Variation products, dosnt show image gallery for variations
December 3, 2020 at 2:01 pm
#247384
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to fix this
function wd_wc_ajax_variation_threshold( $qty, $product ) {
return 100;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'wd_wc_ajax_variation_threshold', 10, 2 );