View Single Post
  #2  
Old 05-15-2007, 04:07 AM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default Re: How to change the position of alternative currency symbol

Try editing /skin1/customer/main/alter_currency_value.tpl

I would start with this code:

Code:
<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>

Upon quick examination, would you make it look like this?


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

Does this work? (basically taking the {$config.General.alter_currency_symbol} and moving it to after the formatted price) -- ? I don't use alt curr symbol, so I'm just thinking out loud. Let me know if this works for you.

Jeremy
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote