• Resolved kittrich

    (@kittrich)


    I had to modify this line around 3025 in “woocommerce-ac.php” because the thumbnail was full size and blocking the information. Can you please add this modification or something similar to the next update? Thanks.

    Original : $prod_image = $product->get_image();

    Modification : $prod_image = $product->get_image(array(100, 100));

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    Yes, sure. Thank you for your suggestion and providing the solution.

    I have checked on Abandoned Orders details page that in some cases product name is overwritten with the product image.

    We will sure apply the same fix if it will work in all scenario or any other similar fix for this issue in the next update.

    Regards,
    Chetna Bhutka

    The above fix will crop the image square.
    It might be better to use a smaller but correct aspect ratio image and limit the size with CSS like the WooCommerce product list does:

    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 100px;
    • This reply was modified 8 years, 1 month ago by Ben Huson.
    • This reply was modified 8 years, 1 month ago by Ben Huson.
    Thread Starter kittrich

    (@kittrich)

    That’s easier yes, but doesn’t help the page loading if you have a lot of images. Also, it’s just a preview for admin, so cropping shouldn’t matter too much.

    Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    Thank you for your suggestion.

    I will discuss on this with the team and provide a proper solution for this issue.

    Regards,
    Chetna Bhutka

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Product Thumbnail Size Adjustment – Request’ is closed to new replies.