• Resolved Tarjeet Singh

    (@tarjeet98)


    Hi is there any way to increase the size of the product images (thumbnails) in your product slider.
    My images are in 2000×2000 pixels. but your plugins slider makes my images to 250×250.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Codeixer

    (@im_niloy)

    Hi,
    you can override the thumbnail filter to resize it ‘shop_thumbnail’
    For plugin support, fill up this form https://codeixer.com/s

    Thread Starter Tarjeet Singh

    (@tarjeet98)

    I don’t see any resize option in your plugins settings can you help me to navigate?

    Plugin Author Codeixer

    (@im_niloy)

    you need to add custom code to resize the image.
    For plugin support, fill up this form https://codeixer.com/s so we can help you with this issue.

    Thread Starter Tarjeet Singh

    (@tarjeet98)

    What is the code? and that code is need to added in functions.php? will it effect other product images? or just your product slider.
    No offense, but can you please help me here I don’t want to fill your form.

    Plugin Author Codeixer

    (@im_niloy)

    Here is the code below:
    you need to add it in the functions.php file.
    all images which use this filter will override to the new size.

    add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
    return array(
    'width' => 150,
    'height' => 150,
    'crop' => 0,
    );
    } );

    it’s okay if you do not want to fill the form but the form (codeixer site) is linked with our support portal which helps us to quickly reply and track the tickets.

    leroy

    (@leroytuttle)

    I put this code in my site and it ruined it, can’t be fixed even after deleting it.

    it has this huge image above my product and a slider and it’s not leaving..

    thanks for the headache

    Plugin Author Codeixer

    (@im_niloy)

    Hi @leroytuttle ,
    For plugin support, fill up this form https://codeixer.com/s so we can help you with this issue.

    leroy

    (@leroytuttle)

    so I need I need a purchase key for technical support, why would is your code deleted still affecting my site? that’s Fckd up

    Plugin Author Codeixer

    (@im_niloy)

    @leroytuttle kindly create a new topic for discussion.
    of course, you don’t need to provide a purchase key for free plugin support.
    you need to select “Free Plugin Support” for this dropdown [What can we help you with? ] not “Technical Support”

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Thumbnails Quality’ is closed to new replies.