
Originally Posted by
youniquephotos
I am using 1.3.7 and when I try and send a comment in super orders via batch status update, I get the red x that the customer was not notified.
I tried this post:
http://www.zen-cart.com/forum/showpo...&postcount=866
and it did not work. Could someone help me find the solution, so that the comments will actually be emailed to the customer
Thank you
The fix on post 866 was for version 46 it looks like you are using version 45 as the batch status update did not work for me in that until I changed the code in super_batch_status. You can either change the code in that file from line 353
PHP Code:
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
update_status($oID, $status, $notify, $comments);
if ($notify == 1) email_latest_status($oID);
to
PHP Code:
if ( ($check_status->fields['orders_status'] != $status) || zen_not_null($comments)) {
$customer_notified = '0';
if (isset($_POST['notify']) && ($_POST['notify'] == 'on')) {
$customer_notified = '1';
}
update_status($oID, $status, $customer_notified, $comments);
if ($customer_notified == '1') {
email_latest_status($oID);
}
Not forgetting to undo the changes made to the super_orders file in admin then it will work as this is the system I am using, or you can download the version 46 version and make the change as in http://www.zen-cart.com/forum/showpo...&postcount=866
Bookmarks