Hello We need a way to omit these totals shown under : "Invoices/Billing Totals" from the Admin Roles. At this point any admin with any role that can see this summary page can see all totals. As there are some roles to deny access for creating invoices and managing billing so this tab should not show as well. Thanks Javier
Hi Javier, Thanks for taking the time to make this suggestion.
In the meantime, this could be achieved as a customisation on your installation to the /admin/templates/$templatename/clientsummary.tpl template with some conditional logic, something like:
{if in_array('Create Invoice', $admin_perms)} **Code here for Client Stats** {/if}
The template contents containing the statistics is currently around lines 95 - 135.
1 Comment
Login to post a comment.
Thanks for taking the time to make this suggestion.
In the meantime, this could be achieved as a customisation on your installation to the /admin/templates/$templatename/clientsummary.tpl template with some conditional logic, something like:
{if in_array('Create Invoice', $admin_perms)}
**Code here for Client Stats**
{/if}
The template contents containing the statistics is currently around lines 95 - 135.