Quote:
Originally Posted by StuntsMovie.com
Good Morning Guys,
i installed the Super Orders Module and have a small problem. Everything works as supposed to except when I update the status of a product, and select Notify Customer, it gives me a Red X and the customer hasn't been notified by email.
I already reinstalled everything, but it still hasn't changed. It used to work when i had everything installed on my Zen-Cart version 1.36. I have version 1.38a now.
Any ideas what could be the problem?
Thanks a lot for your help.
Best Regards,
Stuntsmovie.com
I had the same problem, but there is a fix that was mentioned previously in the post that I integrated, and it worked for me. These are the instructions:
##############################____
I have now made a further correction so that it now updates the customer notification change the lines from 353 to 356 in the super_batch_status.php file in admin from
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 the following 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);
}