Hello! I was wonder if there’s a way to UNCHECK “notify customer” BY DEFAULT when I update the order status. Thank you!
[quote name=‘grabbags’]Hello! I was wonder if there’s a way to UNCHECK “notify customer” BY DEFAULT when I update the order status. Thank you![/QUOTE]
skins → [skin] → admin → view → orders → details.tpl
change…
```php
{include file=“common_templates/select_popup.tpl” suffix=“o” id=$order_info.order_id status=$order_info.status items_status=$order_status_descr update_controller=“orders” notify=true}
to...
```php
{include file="common_templates/select_popup.tpl" suffix="o" id=$order_info.order_id status=$order_info.status items_status=$order_status_descr update_controller="orders" notify=false}
Thanks for your help. It works!
Hello, twin892! Just wonder if you know how to do the same thing within the order list! Please see picture
Thank you!
Change in “skins\basic\admin\views\orders\manage.tpl” from:
```php
{include file=“common_templates/select_popup.tpl” suffix=“o” id=$o.order_id status=$o.status items_status=$order_status_descr update_controller=“orders” notify=true status_rev=“orders_total” extra=$extra_status}
```
To:
```php
{include file=“common_templates/select_popup.tpl” suffix=“o” id=$o.order_id status=$o.status items_status=$order_status_descr update_controller=“orders” notify=false status_rev=“orders_total” extra=$extra_status}
```