Plugin: https://wordpress.org/plugins/woocommerce-quickpay/
In file functions.php of your current wp theme add next code:
1 2 3 4 5 6 7 | add_filter('woocommerce_quickpay_currency', function($currency, $order) { if (class_exists('WOOCS')) { global $WOOCS; $currency = $WOOCS->current_currency; } return $currency; }, 10, 2); |
