1. You can put an mvt:assign tag on every page template where the basket or order contents are displayed, to change the description text before the customer sees it.
Specifically, you need to find every loop that displays the charges, such as shipping and tax. Wherever you see this line of code:
Code:
<mvt:foreach array="basket:charges" iterator="charge">
Code:
<mvt:foreach array="order:charges" iterator="charge">
Code:
<mvt:assign name="l.settings:charge:descrip" value="glosub(l.settings:charge:descrip, 'Sales tax', 'Taxes')" />
2. You can put some code on the OSEL page that will actually change the description in the basket. That's more complex; and since it modifies the database, the consequences of a typing error could be problematic. I don't feel comfortable giving that out without a chance to test it. But a good developer should be able to do it in no more than an hour.
Leave a comment: