danny88 Posted June 24, 2010 Share Posted June 24, 2010 I want to modify how the price shows up on a product page. The price is like this : curency + sum + "tax incl."eg: $60 tax incl. But i want to be shown up like this : "the price is:"+ sum + curency ( without "tax" )eg: The price is : 60$ take a peek : http://i50.tinypic.com/2l9jpmw.jpgwhat should i edit ? thanks.i am using the 1.2.5 version of ps Link to comment Share on other sites More sharing options...
mohsart Posted June 24, 2010 Share Posted June 24, 2010 Look below the line <!-- prices --> in [themes folder]/product.tplYou will see lines like {convertPrice price=$product->getPrice(true, $smarty.const.NULL, 2)} which produce the amountand {l s='tax incl.'} Text within the "l s" notification is presented as it stands and is translatable in the Back Office.So I think that you should insert {l s='the price is:'} right after the br tag.To add () to the texts "Tax incl/excl", use the translation in BOEdit: To remove the text "Tax incl/excl" put {* *} around the l s blocks containing those texts, or remove the lines/Mats Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now