Can I remove thumbnails slider and instead of them add slider dots ?

[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 🙂

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer