Announcement

Collapse
No announcement yet.

Cart Value:

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Cart Value:

    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
    Last edited by crazylegsreilly; 01-Aug-2004, 10:01 AM. Reason: Just clearing up confusion...

    #2
    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,
    Bruce King
    SellerDeck

    Comment


      #3
      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)

      Code:
      	if($$::g_pSetupBlob{'PRICES_DISPLAYED'} && $$::g_pSetupBlob{'ALT_CURRENCY_PRICES'})
      Change it to
      Code:
      	if($::FALSE && $$::g_pSetupBlob{'PRICES_DISPLAYED'} && $$::g_pSetupBlob{'ALT_CURRENCY_PRICES'})
      And that's that.

      Norman
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Thanks for all your help

        Very much appreciated

        Comment

        Working...
        X