Author Topic: Notify customers unchecked at VM order list view  (Read 5661 times)

lindapowers

  • Full Member
  • ***
  • Posts: 1335
  • If you're going through hell, keep going.
    • Los Angeles immigration lawyers
  • Skype Name: manu.gonzalez91
  • VirtueMart Version: Latest avi
Notify customers unchecked at VM order list view
« on: May 19, 2013, 20:31:37 PM »
Hi, I think is quite important at the order list view that the "notify customer" is unchecked for spammy reasons, e-mail host limitations and for the number of e-mails filling your inbox (considering currently VM2 sends an email both to the admin and the shopper)

administrator/components/com_virtuemart/views/orders/tmpl/orders.php

Around Line 127:

Code: [Select]
<td><?php echo VmHTML::checkbox ('orders[' $order->virtuemart_order_id '][customer_notified]'1) . JText::('COM_VIRTUEMART_ORDER_LIST_NOTIFY'); ?>
to:

Code: [Select]
<td><?php echo VmHTML::checkbox ('orders[' $order->virtuemart_order_id '][customer_notified]'0) . JText::('COM_VIRTUEMART_ORDER_LIST_NOTIFY'); ?>
Regards