
Originally Posted by
nguyenkhv
To BlindSide,
Do you know how to edit code so that I can remove the restriction on the number of products per order to display Product Images on packaging slip.
I want to display products' images regardless the number of products.
Thanks,
In the super_packingslip.php file found in admin, at line 45 you will find the following code
PHP Code:
// Add product images if there are 3 or less products on order
if (sizeof($order->products) < 4) {
$display_images = 1;
}
else {
$display_images = 0;
}
Just change the value of 4 to a higher value you want.
With regards to your "fix" for the notification you will now find that it is not working for the batch status update, you should have followed what gsdcypher did on page 98.
Cheers Blind side
Bookmarks