It is this bit of code here
Code: Select all
echo '<td class="text-right">' . tep_display_tax_value($product['tax']) . '%</td>';Code: Select all
echo '<td class="text-right">' . tep_display_tax_value($product['tax']) . '%</td>';Code: Select all
echo '<td class="text-right">' . Tax::format($product['tax'], 0) . '%</td>';I guess you do not charge any tax rates that have a fraction? That is, all your tax rates are whole numbers?
I did think about doing that but wondered if it would affect anything else. Just wasnt confident to give it a try. Seems to work anyway. Thanks.heatherbell wrote: ↑Fri Apr 01, 2022 3:07 pmI guess you do not charge any tax rates that have a fraction? That is, all your tax rates are whole numbers?
Currently, they all are in U.K. (20, 5 and 0)
In which case, why would the decimal places be needed anywhere?
Simplest is admin>Configuration>My Store>Tax Decimal Places - set to 0