Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Nov 2006
    Posts
    16
    Plugin Contributions
    0

    Default Displaying multiple currancies, checkout in one...

    I realise that this may not be the right forum to post this, for which I apologise and ask that it be moved if necessary but I'm a bit of a quandary.

    Right, we have finally got the HSBC mod installed and working and it successfully takes orders (god, was that fun! :sarcastic smilie: ) but this presents us with another problem.

    As a UK shop, our merchant account is in UK£ and for reasons I don't really understand other than complications with exchange rates at HSBC, we do not want to be able to accept multiple currencies through the HSBC gateway. (Saying that, I'm not even sure we could since they give different hashes for different currencies, but the payment module only allows one hash key :confused: ). And, since if I chose to do my shopping in US$ everything is all fine and dandy through out my shopping experience on the site, yet when I get sent to the HSBC gateway, I'm asked to pay the US$ amount in UK£. Which is good for me as the store owner, really really crap as a customer.

    So, we are faced with 2 options. Either we disable the ability to shop in your local currency OR (and this is way I'm posting here as it is the ideal solution for us) we would still allow customers to shop in their local currency, but at checkout_payment their local currency changes from local_currency to UK£ and the customer has a message (which I now how to add to the template) that says something to the effect:
    "Our payment gateway only accepts UK£ payment, your order will be charged to your card at the prevailing rates when order is placed".

    This way we can still offer the 'local' feel of the shopping experience to our customers, but we also are able to receive the funds in our preferred currency.

    Now, my question is this. Is this possible to do? And if so, fancy doing it?

    Thank you in advance for any replies... Since we got HSBC running, this is our last stumbling block before we go live!!

  2. #2

    Default Re: Displaying multiple currancies, checkout in one...

    I'd also love to know the answer to this question.

    Anyone able to point us in the right direction?

    cheers

  3. #3
    Join Date
    Nov 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Displaying multiple currancies, checkout in one...

    Count me as another person looking to do this... I'm setting up a store that processes credit card transactions offline in Canadian only. Although we want people to be able to browse the store in various currencies, we'd like to tell customers exactly they will be charged in Canadian on pages 2 and 3 of the checkout process and on the invoice itself.

    If anyone has any idea if this is possible, I'd greatly appreciate hearing from you!

    Thanks,
    epibeta

  4. #4
    Join Date
    Nov 2007
    Posts
    4
    Plugin Contributions
    0

    Default Re: Displaying multiple currancies, checkout in one...

    I'm sure this isn't the best way of handling this, but I managed to make this work by changing the the default language currency (in /includes/languages/english.php) to the currency i want users to check out in and then going into the admin panel > configuration > my store and toggling "Switch To Default Language Currency" from false to true. The end result is that users can use the currency dropdown box, but the currency defaults back to the one you chose in english.php on almost every new page load, thus guaranteeing that all orders get placed in that currency. Like i said, not exactly 100% ideal because users can't just switch to their preferred currency and have it stay that way, but it got the job done. Hope that helps somebody!

    Epibeta.

  5. #5
    Join Date
    Apr 2007
    Location
    California, USA
    Posts
    233
    Plugin Contributions
    0

    Idea or Suggestion Re: Displaying multiple currancies, checkout in one...

    I would like this too. As it is a bit confusing having orders in the multiple currencies in the admin and also with paypal certain reports within payapal that are fantastic for my accounts department display only one currency at a time. This can be very time consuming to generate all the different currency reports in paypal. And the exchange rate is not always the same as what zencart has converted.

    i.e. default currency (mine is US$) is converted to UK pounds in zencart. This UK pounds is submitted to paypal, which then converts it back to US$ to deposit into our paypal balance according to paypal's exchange rate. Sometimes we loose money and other times we gain. Not really an ideal solution.

    Anyone with a solution on this?
    Thanks
    Supersnow

  6. #6
    Join Date
    Oct 2007
    Location
    Edinburgh, Scotland
    Posts
    243
    Plugin Contributions
    1

    Default Re: Displaying multiple currancies, checkout in one...

    Has anyone found a solution to this problem, other than the workaround outlined by epibeta?

    Is there anyway to control the checkout currency in Zen-Cart?

    Thanks.

  7. #7
    Join Date
    Apr 2008
    Posts
    133
    Plugin Contributions
    1

    Default Re: Displaying multiple currancies, checkout in one...

    I would like this functionality as well. It is not possible currently. I started looking into what kind of a mod it would be and it looks pretty scary. Not for me to do.

  8. #8
    Join Date
    Jun 2008
    Location
    Delhi
    Posts
    6
    Plugin Contributions
    0

    Default Re: Displaying multiple currancies, checkout in one...

    in file :

    includes/modules/pages/checkout_confirmation/header.php

    find lines :

    if (isset($_POST['payment'])) $_SESSION['payment'] = $_POST['payment'];
    $_SESSION['comments'] = zen_db_prepare_input($_POST['comments']);



    Put the following after that line :

    $messageStack->add_session('checkout_confirmation', TEXT_CHANGE_IN_CURRENCY, 'warning');


    in file :

    includes/languages/english/modules/checkout_confirmation.php

    find line :

    define('HEADING_TITLE', 'Step 3 of 3 - Order Confirmation');

    Put the following after that line :


    define('TEXT_CHANGE_IN_CURRENCY', 'Please forgive HSBC for not understanding your currency. We would like to tell you that we want to rip you by changing the currency');


    just kidding --- > put your message instead of 'Please forgive HSBC for not understanding your currency. We would like to tell you that we want to rip you by changing the currency'

    and dont forget the lil quotes on both sides of your message

    This works for zen-cart 1.3.0 ---> if you get the drift youll manage it any version
    Last edited by surajitray; 29 Jul 2008 at 12:47 AM. Reason: compatibility

  9. #9
    Join Date
    Jun 2008
    Location
    Delhi
    Posts
    6
    Plugin Contributions
    0

    Default Re: Displaying multiple currancies, checkout in one...

    ok another thing dont forget to add --->


    $messageStack->reset('checkout_confirmation');


    before

    $messageStack->add_session('checkout_confirmation', TEXT_CHANGE_IN_CURRENCY, 'warning');


    in the above instructions

    this might interfere with other messages coming from other pages which redirect to this page (unlikely though )

  10. #10
    Join Date
    Jun 2008
    Location
    Warrenpoint, United Kingdom
    Posts
    44
    Plugin Contributions
    0

    Default Re: Displaying multiple currancies, checkout in one...

    sorry for dragging this old post up, but before I install this I just wanna know if anyone got the solution by surajitray working??

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Multiple stores with one checkout ?
    By Muddler in forum General Questions
    Replies: 163
    Last Post: 27 Jul 2017, 06:45 PM
  2. v151 Multiple VAT rates displaying at Step 2 of checkout
    By RoPey in forum Currencies & Sales Taxes, VAT, GST, etc.
    Replies: 0
    Last Post: 20 Apr 2013, 01:02 PM
  3. Displaying multiple prices for multiple product sizes?
    By cravin2 in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 21 Feb 2011, 10:36 AM
  4. Can I have multiple stores share one checkout?
    By mick_dodd in forum General Questions
    Replies: 6
    Last Post: 28 Apr 2009, 07:22 PM
  5. Creating Multiple Page Fronts With One Checkout
    By enchantedlingerie in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 28 Mar 2007, 01:11 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg