PDA

View Full Version : Cart Value:


crazylegsreilly
01-Aug-2004, 11:00 AM
I want to have the site quoted in two currencies. However, I would like to have the value in the cart (on the catalog pages, not the checkout value), quoted in a single currency. This is just for ease of design. Can it be done?
Thanks

Bruce
04-Aug-2004, 04:26 PM
Hi There,

What you want to do will not be possible. If you have a dual currency display on the product pages, the same will carry forward to the check out phase. What you could do is to develop the site in a single currency and following the Advanced User Guide, page 46 (Multiple Currency Conversion) you could incorporate the converter and be able to offer customers an option to see the prices converted to several local currencies.

Cheers,

NormanRouxel
04-Aug-2004, 06:38 PM
You can fix this with a one line change in ActinicOrder.pl

Look for the line (I'm guessing you're using V6 - it should be the same in V7)

if($$::g_pSetupBlob{'PRICES_DISPLAYED'} && $$::g_pSetupBlob{'ALT_CURRENCY_PRICES'})
Change it to if($::FALSE && $$::g_pSetupBlob{'PRICES_DISPLAYED'} && $$::g_pSetupBlob{'ALT_CURRENCY_PRICES'})

And that's that.

Norman

crazylegsreilly
05-Aug-2004, 09:08 AM
Very much appreciated