我正在使用WPML和WooCommerce Multilingual进行多币种设置。我正在通过geoplugin.net
检测访问者的地理位置,以设置网站语言。
我也想设置货币,这是一个问题:
有没有办法在WooCommerce Multilingual中以编程方式设置货币?我试了do_action('wcml_switch_currency', $_curr);
$_curr = 'GBP';
'没有运气:/。
答案 0 :(得分:2)
我通过OptionParser.new do |options|
# as before, but without k option
end.parse!
# At this point all the options optparse knows about will be
# removed from ARGV, so you can get at what's left:
$values[:keyword] = ARGV[0]
想出了这个例子:
filter