在Woocommerce中禁用基于用户国家/地区地理IP的支付网关 [英] Disable payment gateways based on user country geo-ip in Woocommerce

查看:167
本文介绍了在Woocommerce中禁用基于用户国家/地区地理IP的支付网关的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的Woocommerce商店中,我设置了地理位置系统,当地理位置确定了IT以外的其他国家/地区时,我想禁用付款方式

In my Woocommerce shop I set up the geolocation system, when geolocation identifies any country other than IT I would like to disable payment methods

如果是IT(geop-ip),请显示付款.

If it is IT (geop-ip), show payment.

如果是其他所有国家/地区(geo-ip),请禁用付款.

If all other country (geo-ip), disable payment.

推荐答案

Woocommerce已经通过

Woocommerce has already a geolocation Ip feature through WC_Geolocation class, so you don't need any additional plugin.

这是一种根据客户地理位置IP国家/地区,针对除"IT" (意大利)国家/地区代码以外的所有国家/地区禁用付款网关的方法:

Here is the way to disable payment gateways for all countries except "IT" (Italy) country code, based on costumer geolocated IP country:

// Disabling payment gateways except for the defined country codes based on user IP geolocation country
add_filter( 'woocommerce_available_payment_gateways', 'geo_country_based_available_payment_gateways', 90, 1 );
function geo_country_based_available_payment_gateways( $available_gateways ) {
    // Not in backend (admin)
    if( is_admin() ) 
        return $available_gateways;

    // ==> HERE define your country codes
    $allowed_country_codes = array('IT');

    // Get an instance of the WC_Geolocation object class
    $geolocation_instance = new WC_Geolocation();
    // Get user IP
    $user_ip_address = $geolocation_instance->get_ip_address();
    // Get geolocated user IP country code.
    $user_geolocation = $geolocation_instance->geolocate_ip( $user_ip_address );

    // Disable payment gateways for all countries except the allowed defined coutries
    if ( ! in_array( $user_geolocation['country'], $allowed_country_codes ) )
        $available_gateways = array();

    return $available_gateways;
}

代码进入您的活动子主题(或活动主题)的functions.php文件中.经过测试,可以正常工作.

Code goes in functions.php file of your active child theme (or active theme). Tested and works.

这篇关于在Woocommerce中禁用基于用户国家/地区地理IP的支付网关的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆