Shange thumbnails to dots navigation
-
I want to change the thumbnails in woocommerce product image gallery to dots.
So far I have added this:
// 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;
}
That turned my thumbnails images in to a list of numbers.The page I need help with: [log in to see the link]
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘Shange thumbnails to dots navigation’ is closed to new replies.