Bagi, excellent. Sounds positive.
So, the progress I've made so far to remove the "Tax Totals: Ł0.00" from all customer facing parts of Boss Cart, is...
1) To remove the Tax Total from the Basket/cart pages, then edit /administrator/components/com_virtuemart/html/basket.php file and in the 197th line replace "$show_tax = true;" with "$show_tax = false".
2) To remove the Tax total from the emails that the customer receives then edit /administrator/components/com_virtuemart/html/templates/order_emails/email_english.html by replacing the "Total Tax" lines with "*&nbsc;" see below;
change this....
<tr class="Stil1">
<td colspan=4 align=right>Tax Total :</td>
<td>{phpShopOrderTax}</td>
</tr>
to this...
<tr class="Stil1">
<td colspan=4 align=right> </td>
<td> </td>
</tr>
GREAT! all works perfectly.
So, the "Tax Totals" now only appears in one final place... which is the last page before clicking the "Confirm Order" button at the bottom of the "Complete Order" part of the shopping cart. The above changes don't appear to stop this displaying so there must be somewhere else that's making it display there...?
In your previous PM, you suggested editing, /administrator/components/com_virtuemart/classes/ps-checkout.php with the following lines commented out...
the 1731st line which looks like this...
if ($auth["show_price_including_tax"] != 1) {
$shopper_message .= $VM_LANG->_PHPSHOP_ORDER_PRINT_TOTAL_TAX." = ";
$shopper_message .= $CURRENCY_DISPLAY->getFullValue($order_tax) . "\n";
}
please replace with this....
if ($auth["show_price_including_tax"] != 1) {
/* $shopper_message .= $VM_LANG->_PHPSHOP_ORDER_PRINT_TOTAL_TAX." = ";
$shopper_message .= $CURRENCY_DISPLAY->getFullValue($order_tax) . "\n";
*/ }
After you are done with it please go a bit down to the 1764th line and replace this....
$shopper_message .= $VM_LANG->_PHPSHOP_ORDER_PRINT_TOTAL_TAX." = ";
$shopper_message .= $CURRENCY_DISPLAY->getFullValue($order_tax) . "\n";
with this...
/*$shopper_message .= $VM_LANG->_PHPSHOP_ORDER_PRINT_TOTAL_TAX." = ";
$shopper_message .= $CURRENCY_DISPLAY->getFullValue($order_tax) . "\n";*/
Unfortunately this appears to have NO EFFECT on the shopping cart. The Tax Total still appears on the final Complete Order page. So, there must be somewhere esle?!?! And if there is, then, perhaps we need not have made the above two change at all to ps-checkout.php????
thanks, again!
JON
