ok incase this hasnt been said b4, there is bug where super orders doesn record correctly that a customer was notified, (always no)
this can be corrected in the file: super_orders_functions.php
line 401:
PHP Code:
if ($notified == 'on')
change to

also if u want it to notify by default edit: super_orders.php
line 929:
PHP Code:
echo zen_draw_checkbox_field('notify', '', false); echo ' ' . ENTRY_NOTIFY_CUSTOMER . '<br /><br />';
to
PHP Code:
echo zen_draw_checkbox_field('notify', '', true); echo ' ' . ENTRY_NOTIFY_CUSTOMER . '<br /><br />';
Bookmarks