• Resolved djwilko12

    (@djwilko12)


    Hello,
    Is there a way to add a currency switcher at the checkout? In this way, the user could change the order′s total amount to another currency and pay using that chosen currency.
    It would be very useful.
    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support mediawebster

    (@mediawebster)

    Hello

    Yes. You can add it as shortcode [woocs] or the WOOCS widget

    Thread Starter djwilko12

    (@djwilko12)

    Thanks!! Seems to work… we need to find a way to place it correctly and give some desing to the checkout page…
    Anyway, how can we do in order to show some products in the base currency, but just a few of them in another currency? I mean, without switching between currencies, being able to show some products in USD and some in EURO?
    If you add them both to the cart, they are automatically converted into the base currency.

    Plugin Support mediawebster

    (@mediawebster)

    Hello

    I think it’s possible. But you need code customization

    Thread Starter djwilko12

    (@djwilko12)

    can we do it?
    If you provide me your emaial address we can contact in private

    Plugin Support mediawebster

    (@mediawebster)

    Hello

    Sorry, I do not do custom work.

    You can use a similar code:

    add_filter(‘wp_head’,function(){
    if(is_product()){
    // check current product and assign currency
    global $WOOCS;
    $WOOCS->set_currency(‘USD’);
    //OR $WOOCS->set_currency(‘EUR’);
    }
    });

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Currency switcher on checkout’ is closed to new replies.