All prices incl. VAT, plus Shipping

Dear all, I would like to delete the sentence ’ All prices incl. VAT, plus Shipping’ on the first page of the right side. Please tell me, Which files should i edit.

Hi,

it’s the language file lang.php where you’ll find this phrase. BTW: Think of the override system for the languages before you make changes.

Regards

Thanks, Mr. Marco. You mean, I should edit the language.php file and also cust_lang.php file.

[QUOTE=boongui;35002]Thanks, Mr. Marco. You mean, I should edit the language.php file and also cust_lang.php file.[/QUOTE]

Kind of, Mr. boongui :wink:
Copy the entry

'DETAILS_PLUSSHIPPING'                            => "incl. VAT, plus ",

from line 286 of your lang.php to your custom_lang.php and alter it there to (for example)

'DETAILS_PLUSSHIPPING'                            => "incl. tax, plus ",

The shop will read your custom_lang first. If he doesn’t find an appropriate entry, it will get the one from lang.php. So your alterations will be kept even if lang.php has to be updated :wink:

Regards

Dear, Mr. Marco Thank you very much for helping.