How can we ensure that the staff only notes in order details are not visible to the vendor?
Try the following solution.
- open the design/backend/templates/views/orders/details.tpl file and replace:
{__("staff_only_notes")} {$order_info.details}
with
{if $smarty.const.ACCOUNT_TYPE != 'vendor'}{__("staff_only_notes")} {$order_info.details}{/if}
- clear the cache
- check the result
Works great thanks for the info.
You are welcome !
This works great - thanks eComLabs!
This works great - thanks eComLabs!
You are welcome!