Support » Plugin: Product Gallery Slider, Additional Variation Images for WooCommerce » Blurred Product Gallery Thumbnails

  • Hi, I love this plugin but am having trouble figuring out why it makes the horizontal product thumbnails blurry In the slider. How can I fix this?

    And is it possible to hide images when the page is loading except the main product image?

Viewing 1 replies (of 1 total)
  • Plugin Author Niloy

    (@im_niloy)

    Hello, please try this code below in your child theme functions.php:

    add_filter( 'shop_thumbnail', function( $size ) {
    return array(
    'width' => 200, // Custom Width
    
    'crop' => 0,
    );
    } );

    if your single product page is too heavy for load than you can see the horizontal thumbnails first until the page fully ready.

    Note: in the pro version has this horizontal issue fixed.
    Thanks

Viewing 1 replies (of 1 total)
  • The topic ‘Blurred Product Gallery Thumbnails’ is closed to new replies.