VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: jetdeck on February 08, 2013, 23:20:40 PM

Title: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 08, 2013, 23:20:40 PM
Configuration -> Currencies -> Active Currency [$]
Positive Format [{symbol}{number} ]
Just put {symbol} in the front and all good!

I checked the above config, the setting was correct.

This incorrect dollar sign placement only shows up on the "Thank you for your order" page.

Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 12, 2013, 17:34:12 PM
Anybody???


I really need help.
Title: Re: Dollar sign in wrong place 25.82$
Post by: PRO on February 12, 2013, 17:35:12 PM
for what payment method?


Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 12, 2013, 17:56:45 PM
we take amx, visa, mastercard

dollar signs look correct everywhere except "Thank you for your order page"

I wish I knew how to insert an image of the screen capture so I attached it.

Thank you so much!!

[attachment cleanup by admin]
Title: Re: Dollar sign in wrong place 25.82$
Post by: GJC Web Design on February 12, 2013, 18:32:49 PM
think it's this

$html .= $this->getHtmlRow ('AUTHORIZENET_AMOUNT', $authorizeNetResponse['amount'] . ' ' . $currency->currency_name);

in plugins/vmpayment/authorizenet/authorizenet.php line 1006

try

$html .= $this->getHtmlRow ('AUTHORIZENET_AMOUNT', $currency->currency_name.$authorizeNetResponse['amount'] );
Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 12, 2013, 18:43:04 PM
THank you!

Just quick question, how do I find this?? I am a complete novice.

in plugins/vmpayment/authorizenet/authorizenet.php line 1006
Title: Re: Dollar sign in wrong place 25.82$
Post by: GJC Web Design on February 12, 2013, 18:47:28 PM
Open the file with ftp and edit that line...
Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 12, 2013, 19:17:04 PM
So sorry but I need a little more hand holding. I have no idea where to start to access this file.
Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 13, 2013, 20:05:49 PM
I'm really sorry to need so much directions but my web designer has disappeared before fixing this issue. I know i can do it but need more detail about how to access this file.

Thank you
Title: Re: Dollar sign in wrong place 25.82$
Post by: GJC Web Design on February 14, 2013, 10:39:00 AM
This is very basic - Google ftp client ...  e.g. filezilla
install a ftp client - download the file - edit it - upload it...

or most hosting control panels have a built in editor..
Title: Re: Dollar sign in wrong place 25.82$
Post by: jetdeck on February 15, 2013, 05:30:03 AM
Thank you! It worked!!!