[ad_1]
@magsmyk00
Thanks for reaching out to us. Please add the following snippet inside your current/child theme’s functions.php:
add_filter( 'woo_variation_gallery_slider_js_options', function( $slider_js_options ){
$slider_js_options['dots'] = true;
return $slider_js_options;
} );
add_action( 'wp_head', function(){
?>
<style id="wvg-hide-thumbnail">
.woo-variation-gallery-thumbnail-wrapper {
display: none;
}
</style>
<?php
} );Note: It is recommended to use a child theme if you are not using a child theme. Otherwise, the modification/additional snippet will be removed once you update the theme.
Please let me know if you wanted something like this. Hope to hear from you soon.
Thanks
It works perfectly.
Many thanks for your help 🙂
