greggsand Posted October 18, 2014 Share Posted October 18, 2014 I noticed a small bug in the way 1.6.0.9 displays the quantity of customized products in the confirmation email that gets sent to customers. If you order multiple variations of a customizable product, say 4 custom mugs, 3 with the name "Betty" and one with the name "Frank", the email will display that you ordered 4 mugs, but also say you ordered 3 of each name. Line 445 of the class PaymentModule is currently: $customization_quantity = (int)$product['customization_quantity']; It should be changed to: $customization_quantity = $customization['quantity']; 1 Link to comment Share on other sites More sharing options...
El Patron Posted October 18, 2014 Share Posted October 18, 2014 thank you for the follow up! it would be very much appreciated if you could open a bug report for 1.6.0.9 here: http://forge.prestashop.com/ make sure to include link to your posted fix! if you could then past bug report back here for others to follow/comment/vote up this will allow PS team to fix for all. Link to comment Share on other sites More sharing options...
Recommended Posts