FOX - WooCommerce Currency Switcher Professional

How to force any currency on the checkout page

Sometimes its necessary force on checkout page any currency by logic of business.

  • open functions.php of the current wp theme and drop there next script:
  • add_filter('wp_head',function(){    
        if(is_checkout()){
            global $WOOCS;
            $WOOCS->set_currency('USD');
        }
    });
  • Change ‘USD‘ to any currency you need …

Notice: works only when “Is multiple allowed” option is enabled (Yes).