• trsqr

    (@trsqr)


    Hi,

    I’d like to replace the thumbnails on the product pages with simple dots (number of dots corresponding to product images). I’m using Modern Store Pro. Is there an easy way to do this? If no easy way and easy answer, can you point me to correct direction? Ie. what to change etc…

    Many thanks,
    Olli

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter trsqr

    (@trsqr)

    Ok, got this one done – plenty of CSS and the following in functions.php:

    // Change Flexslider to use dots instead of thumbnails
    add_filter( 'woocommerce_single_product_carousel_options', 'ud_update_woo_flexslider_options' );
    
    function ud_update_woo_flexslider_options( $options ) {
    
        $options['controlNav'] = true;
        return $options;
    }
    Theme Author Ben Sibley

    (@bensibley)

    Glad you found a solution!

    I would recommend copying and pasting your function into a function.php file in a child theme if you haven’t already. Otherwise, next time you update Modern Store your new function will be deleted and you’ll have to add it again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Replacing thumbnails with dots’ is closed to new replies.