Note: This section topic requires basic technical understanding of coding
1. Changing Product Image Size displayed in Email
To change the product image size it can be achieved in 2 ways
1.1 By adding width attribute in HTML email template
- Open the extension’s admin page and navigate to Templates > {products} Design tab
- Use Editor in code view
- Find <img src=“{product_image}”> in the code view mode and Add width attribute to it as shown. You can specify your desired width. <img src=”{product_image}” width=”100px” />
1.2 By updating the resizing size in the code [Recommended Method]
- Open file catalog/controller/cron/reviewemail.php
- Find the following code $image = $this->model_tool_image->resize($product_info[‘image’], 200, 200);
- Update the value 200, 200 as per your desired width