Re: Billing Address -> how to REMOVE the VAT-Line
Posted: 15 Dec 2023, 20:58
There is 5 results for vat_1 in order.php starting from line 433
Find
in
// -----------
// SHIPPING
// -----------
and
// -----------
// BILLING
// -----------
and comment it so it look like this:
Find
Code: Select all
if ($v['vat_1'] != '') { $ob[] = '<br />'.Text::_('COM_PHOCACART_VAT_1_LABEL').': '. $v['vat_1'].'<br />';}
// -----------
// SHIPPING
// -----------
and
// -----------
// BILLING
// -----------
and comment it so it look like this:
Code: Select all
/*if ($v['vat_1'] != '') { $ob[] = '<br />'.Text::_('COM_PHOCACART_VAT_1_LABEL').': '. $v['vat_1'].'<br />';}*/