Hi guys,
Any idea how to remove the taxes widget from the admin home page??
See screenshot attached please.
Posted 19 October 2016 - 08:36 AM #1
Hi guys,
Any idea how to remove the taxes widget from the admin home page??
See screenshot attached please.
Posted 19 October 2016 - 01:53 PM #3
Comment the code in /design/backend/templates/views/index/index.tpl
{if !empty($orders_stat.taxes)} <td> <div class="dashboard-card"> <div class="dashboard-card-title">{__("taxes")}</div> <div class="dashboard-card-content"> <h3>{include file="common/price.tpl" value=$orders_stat.taxes.subtotal}</h3>{include file="common/price.tpl" value=$orders_stat.taxes.prev_subtotal}, {if $orders_stat.taxes.subtotal > $orders_stat.taxes.prev_subtotal}+{/if}{$orders_stat.taxes.diff nofilter}% </div> </div> </td> {/if}