Change currency with language
-
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)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Change currency with language’ is closed to new replies.