Hi
In order tu update all status for orders we have to manually unselect each order cause by default they have the "notify customer" clicked.
Any way to make it appear unselected by default?
Thanks
modify or override the view in administrator/components/com_virtuemart/views/orders/tmpl/orders.php
Replace this line
echo VmHTML::checkbox ('orders[' . $order->virtuemart_order_id . '][customer_notified]', 1) . JText::_ ('COM_VIRTUEMART_ORDER_LIST_NOTIFY');
with
echo VmHTML::checkbox ('orders[' . $order->virtuemart_order_id . '][customer_notified]', 0) . JText::_ ('COM_VIRTUEMART_ORDER_LIST_NOTIFY');
Thanks Joseph!
Regards
Hi Joseph
Are you sure is that file?
We are on VM 2.020b and we can't find that line in the file you mention,
Regards
Don't you find something similar? I guess should be somewhere around line 120, whatever version you are using. Or just search for the text 'customer_notified' and then change value from 1 to 0.
<td><?php echo VmHTML::checkbox ('orders[' . $order->virtuemart_order_id . '][customer_notified]', 0) . JText::_ ('COM_VIRTUEMART_ORDER_LIST_NOTIFY'); ?>
Line 127
Works perfectly, thanks a lot.