• When I activate the plugin the images are blurred and using sizes too small for the space, even though I’ve uploaded large files.

    Can you please tell me how to increase the size of the main image?

    Thanks

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

    (@im_niloy)

    please send me a screenshot

    Thread Starter aaronbennett2097

    (@aaronbennett2097)

    Hi Niloy.

    Here’s a link to the screenshot.

    https://www.dropbox.com/s/x03oz7hvt2xv9zq/Screenshot%202019-11-20%2009.57.21.jpg?dl=0

    I can see from the inspector that’s it’s using an image that has 350-382 at the end, even though I’ve checked the media settings and can’t find that image size, so wondering if your plugin is creating it.

    Thanks for your help
    Aaron

    Plugin Author Codeixer

    (@im_niloy)

    Hi,
    for thumbnails i use ‘shop_thumbnail’ image size and for the large image i use ‘shop_single’ image size.
    you can use this code Below in your functions.php file for resize the width and height.

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

    let me know if you need any other helps.
    Thank you

    Thread Starter aaronbennett2097

    (@aaronbennett2097)

    Thanks for the quick reply.

    So in theory, can I change these within wordpress without needing to add a filter?

    I can’t see where the shop_single image is specified.

    Thanks again
    Aaron

    Plugin Author Codeixer

    (@im_niloy)

    this two filter was used in old woocommerce version . after version 3.0 the dashboard edit option was gone and use customizer for edit the size.
    so you can’t change it from the WordPress dashboard. in this plugin pro feature, I will add an option for resizing the images from the setting panel. so pro version can get benefit from it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘images blurry’ is closed to new replies.