• Resolved daaan26

    (@daaan26)


    Hi,

    So I’m trying out this plugin and it has lots of features that work perfectly. I am really happy with this plugin. There is only one thing I was wondering. Currently the images used for the thumbnails within the slider are all cropped images. On my website they use the 100×100 version of the original image.

    But I really want the original images displayed there, so it is not cropped to 100×100. Unfortunately this is not easy to achieve since the source files literally are like: http://www.domainname.com/wp-content/uploads/2019/08/imagename-100×100.jpg

    Is there any way to get the plugin to display the original image files over there? (Or at least not the 100×100 version), because currently all images in the slider are blurred.

    Thanks in advance.

    Best regards,

    Daan

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,

    Please use this filter at functions.php, this will make the thumbnail size to full size.

    function rtwpvg_thumbnail_size_cb($thumbnail_size) {
        return 'full';
    }
    
    add_filter('woocommerce_gallery_thumbnail_size', 'rtwpvg_thumbnail_size_cb');

    Thanks

    Plugin Author RadiusTheme

    (@techlabpro1)

    Hi,

    I am making this topic as resolved.

    Let me know if need.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Gallery Thumbnail Source File’ is closed to new replies.