by Jim » Tue Dec 01, 2009 1:18 pm
I don't believe it is possible to do that.
In the <storeid>.aa (where <storeid> is your login name) file int the ss cgi directory for your store you will find a token like this
currency: USD|$|-$#,###.##||
Which defines the currency display settings for the store
The second $ is replaced by what ever is in between the two vertical bars in front of it. So you could change the value to output
USD$ 9.99
by replacing the first $ with USD$ like this
currency: USD|USD$|-$#,###.##||
or you could put it after the amount
like this 9.99 USD$
by formatting ithe currency value like this
currency: USD|USD$|-#,###.## $||
If you decide to try this make sure you backup the file first in case something goes wrong.