Remove Notify Customer Check Mark

V4.9.2 can anyone tell me how to remove the check marks as default please.

https://prnt.sc/m1ourw

https://prnt.sc/m1ov64

In design/backend/templates/common/select_popup.tpl you can change these three lines at the top of the file from:

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

to

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

You can also override this file first by copying it to
design/backend/templates/addons/my_changes/common/select_popup.tpl
and making your changes there.

I've always done it further down in the same file (/design/backend/templates/common/select_popup.tpl).

From:

            {hook name="select_popup:notify_checkboxes"}
                {if $notify}
                    
  • {$notify_text|default:__("notify_customer")}
  • {/if} {if $notify_department}
  • {__("notify_orders_department")}
  • {/if} {if "MULTIVENDOR"|fn_allowed_for && $notify_vendor}
  • {__("notify_vendor")}
  • {/if} {/hook}

    To:

                {hook name="select_popup:notify_checkboxes"}
                    {if $notify}
                        
  • {$notify_text|default:__("notify_customer")}
  • {/if} {if $notify_department}
  • {__("notify_orders_department")}
  • {/if} {if "MULTIVENDOR"|fn_allowed_for && $notify_vendor}
  • {__("notify_vendor")}
  • {/if} {/hook}