
Originally Posted by
DivaVocals
2. Update comments using “Batch Status Update” not working correctly.
Comments in “Batch Status Update” should work the same way default order comments work. (support for e-mail, no e-mail, or hidden comments) . If working properly should allow shop owner to create batch hidden order comments.
Currently does not create the correct comment type. Hidden comments and no e-mail comments are not e-mailed to the customer, but they are stored and displayed in the store as if they are e-mail comments.
I have the batch status working. I can send you the mods
super_batch_status.php around line 310:
Code:
<td class="smallText" colspan="2"><?php
echo ENTRY_NOTIFY_CUSTOMER . zen_draw_radio_field('notify', '1', true) . '-' . TEXT_EMAIL . ' ' . zen_draw_radio_field('notify', '0', FALSE) . '-' . TEXT_NOEMAIL . ' ' . zen_draw_radio_field('notify', '-1', FALSE) . '-' . TEXT_HIDE . '<br>';
echo zen_draw_checkbox_field('notify_comments', 'on', true); echo ' ' . ENTRY_NOTIFY_COMMENTS;
?><br><br>
<input value="<?php echo BUTTON_UPDATE_STATUS; ?>" type="submit">
and around line 411:
Code:
if ($notify == '1') {
Bookmarks