• Resolved jandrabek

    (@jandrabek)


    Hello, is it possible to trigger currency change with language change? I found code for some other currency switchers (but yours is the only one that work properly with my website ??

    add_filter(‘wp_head’, function() {
    $lang = get_locale();
    global $WOOCS;
    switch ($lang)
    {
    case ‘en_US’:
    $WOOCS->set_currency(‘EUR’);
    break;
    default:
    $WOOCS->set_currency(‘CZK’);
    break;
    }
    });

    Not sure with what I should replace $WOOCS to make it work. Can you help? Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nick McReynolds

    (@woobewoo)

    Hello jandrabek,

    Try it like this:

    if (class_exists('frameWcu')) {
    frameWcu::_()->getModule('currency')->setCurrentCurrency($currencyCode);
    }

    If it won’t help, contact our internal support team

    Thread Starter jandrabek

    (@jandrabek)

    Thank but I’m not familliar with php. Can you give me full code for at least one currency and laguage? en_US is EUR. I mean code I can put to functions.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change currency with language’ is closed to new replies.