在 WooCommerce 中以编程方式更改货币和付款方式

时间:2021-03-18 09:12:26

标签: php wordpress woocommerce plugins

我正在使用 Multi currency for WooCommerce 插件手动添加两个价格(印度卢比和美元)。因此,如果国家/地区不是印度,我需要一种以编程方式将货币更改为美元的方法。

现在在我的主题 functions.php 中:

add_filter('wmc_currency','change_currency');

function change_currency($client_currency){
   global $woocommerce;
   $country = $woocommerce->customer->get_country();
   if($country == 'IND') {
       $client_currency = 'INR'; //currency code
   } else {
       $client_currency = 'USD'; //currency code
   }
   return $client_currency;
}

此外,如果货币更改为美元,则支付网关必须更改为 Paypal。

感谢任何帮助。

0 个答案:

没有答案