Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用具有多币种设置的 WPML 和 WooCommerce 多语言。我正在通过geoplugin.net设置站点语言来检测访问者的地理位置。
geoplugin.net
我也想设置货币,这是一个问题:
有没有办法在 WooCommerce 多语言中以编程方式设置货币?我试过do_action('wcml_switch_currency', $_curr);where $_curr = 'GBP';' 没有运气:/。
do_action('wcml_switch_currency', $_curr);
$_curr = 'GBP';
我想通了filter,这是一个例子:
filter
add_filter('wcml_client_currency', 'wcml_custom_currency'); function wcml_custom_currency($current){ return 'GBP'; }