如何根据wordpress中的woocommerce中的IP地址更改我的产品货币?

时间:2018-05-11 11:33:44

标签: php wordpress woocommerce

如何修改网站代码以通过IP地址更改货币?

我尝试了太多基于IP地址更改货币的插件,但它无法正常工作。我需要一些自定义代码或插件来解决这个问题。

任何人都可以提供一些吗?

1 个答案:

答案 0 :(得分:0)

这也是第三方api。我不确定这个的准确性,但试一试。

http://usercountry.com/

使用它我们得到当前货币。然后,您可以使用以下插件挂钩动态设置货币。

https://aelia.freshdesk.com/support/solutions/articles/3000010676-how-to-change-the-selected-currency-via-code

function set_currency_programmatically($selected_currency) {
  // Use the usercountry api here to find the currency.
  $selected_currency = 'USD';

  return $selected_currency;
}
add_filter('wc_aelia_cs_selected_currency', 'set_currency_programmatically', 0);