Change Order Status - Autocheck Notify Dept?

When viewing an order in admin, I can change the status and it will ask me to check a box to notify the customer, orders department, and/or supplier.

How can I autocheck these boxes to speed up the process or always notifying? What files must I change?

When viewing an order in admin, I can change the status and it will ask me to check a box to notify the customer, orders department, and/or supplier.

How can I autocheck these boxes to speed up the process or always notifying? What files must I change?

Hello!

But they should be checked by default. Please check the code inside

{hook name="select_popup:notify_checkboxes"}

hook and $notify_customer_status variable in the design/backend/templates/common/select_popup.tpl file.

It should be dependent upon your Order Status settings. If you have the Notify Orders Department checkbox checked for an order status then it should be checked, otherwise it should be unchecked for that particular status change. Same for suppliers.

On the demo these checkboxes are checked by default

http://prntscr.com/gbwura

I understand what you mean. In the following file

design/backend/templates/views/orders/details.tpl

replace

            {$notify_customer_status = false}
            {$notify_department_status = false}
            {$notify_vendor_status = false}

with

            {$notify_customer_status = true}
            {$notify_department_status = true}
            {$notify_vendor_status = true}

Then clear cache

It is recommended to use corresponding hook in this file

Im a little lost

My order statuses are unchecked.

But in my dropdown in the orders window they are checked, i want them to be unchecked as deafult.

http://prntscr.com/gi8ggi

and Ive just noticed none of my order statuses will allow me to edit the check boxes or add a new status

For the Save button please use solution from message #6

For the Order status changing please use solutions from message #2

Hello guys,

I have upgrade cs-cart to version 4.81 and solution provided above does not work anymore. The the check boxes at the bottom of status change popup window are checked by default. Are there any new solutions on how to disabled them?

I think cs-cart should make this as an option in settings somewhere.

Thanks,
X

Since you most likely changed distributed files for your changes, you will have to reapply those changes to whatever files you modified. Please review the documentation related to using hooks and overrides if you want upgrade independence (95% anyway).

Since you most likely changed distributed files for your changes, you will have to reapply those changes to whatever files you modified. Please review the documentation related to using hooks and overrides if you want upgrade independence (95% anyway).

It was a simple change as per recommendations above, and all worked fine before upgrading to the latest version.

As I said, I have edited the same files after the upgrade, but it is not working. I still see these boxes checked.

Did you clear the cache after modifying the templates?

Did you clear the cache after modifying the templates?

Yes I have, and also deleted the CACHE folder. Still no change.

If you do not use responsive admin panel on 4.8.1, the following files should be changed

- design/backend/templates/addons/old_adminpanel/overrides/views/orders/details.tpl

- design/backend/templates/addons/old_adminpanel/overrides/common/select_popup.tpl

If you do not use responsive admin panel on 4.8.1, the following files should be changed

- design/backend/templates/addons/old_adminpanel/overrides/views/orders/details.tpl

- design/backend/templates/addons/old_adminpanel/overrides/common/select_popup.tpl

Thank you eCOMLabs.

You are right, we are still using the old admin panel and your tip worked great!

You are welcome! :)