Hide "Symbol Right" in cart
Hi,
I set the Localization>currencies>USD>Symbol Right to "Each". This is great with products until i get to the 'Cart' portion of the site. Zen then uses the Symbol Right all over the place. I would specifically like to NOT SHOW the Symbol Right in the individual item total and the sub-total.
Advice?
I suppose I could just turn off the symbol right. :dontgetit
thanks,
bodini
Re: Hide "Symbol Right" in cart
Edit your currencies and remove the symbol ...
Otherwise, you'd have to customize the code not to use it ...
Why put it in if you are not going to use it? :unsure:
If just for the Admin, how would the customer know what is set?
Re: Hide "Symbol Right" in cart
Quote:
Originally Posted by
Ajeh
Why put it in if you are not going to use it? :unsure:
It looks good with an individual item listing, but is out of context in the cart column "Total".
I'll just 86 it for now until I can mess with code.
Thanks.
Re: Hide "Symbol Right" in cart
Ok, I have "messed with code". Right or wrong, this seems to work.
Keep in mind that my knowledge of PHP is, "php is some thing that makes html".
in includes/languages/*your template*/english.php, I added: define('PER_UNIT', ' Each');
then in includes/templates/*your template*/templates/tpl_product_info_display.php, on line 132, I added: echo PER_UNIT;
And there you have it. Now, on the product page, the price indicates 'Each'.
If this is wrong, let me know. I aint no computer genius. :unsure:
bodini:cool: