X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Get rid off ( ) in currency #2 ? (https://forum.x-cart.com/showthread.php?t=37828)

ADDISON 02-25-2008 09:15 AM

Get rid off ( ) in currency #2 ?
 
Hi Guys,

I have two currencies. One makes me nervous. The second one is inside two round brackets.

E.g. $250.00 (─ 217.50)

Where shall I edit the code to get rid of those two round brackets?

Thanks

kube 02-25-2008 09:33 AM

Re: Get rid off ( ) in currency #2 ?
 
in skin1/customer/main/alter_currency_value.tpl

find the code below...
({if $plain_text_message eq ""}<span style="WHITE-SPACE: nowrap">{/if}{$config.General.alter_currency_symbol} {math equation="altercurrencyvalue*rate" altercurrencyvalue=$alter_currency_value rate=$config.General.alter_currency_rate format="%.2f" assign=alter_price}{$alter_price|formatprice}{if $plain_text_message eq ""}</span>{/if})


and change to (just removing the outer round brackets at beginning and end of snippet)...
{if $plain_text_message eq ""}<span style="WHITE-SPACE: nowrap">{/if}{$config.General.alter_currency_symbol} {math equation="altercurrencyvalue*rate" altercurrencyvalue=$alter_currency_value rate=$config.General.alter_currency_rate format="%.2f" assign=alter_price}{$alter_price|formatprice}{if $plain_text_message eq ""}</span>{/if}

using webmaster mode will help you find your whereabouts

ADDISON 02-25-2008 09:42 AM

Re: Get rid off ( ) in currency #2 ?
 
Thanks. It worked. I needed some glasses to see those brackets ;)


All times are GMT -8. The time now is 06:15 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.