woogists
3/9/2018 - 3:17 PM

[WooCommerce Anti Fraud] You can add or remove risk countries by using the ‘wc_af_rule_countries’ filter.

[WooCommerce Anti Fraud] You can add or remove risk countries by using the ‘wc_af_rule_countries’ filter.

function wc_af_example_rule_countries( $countries ) {
	$countries[] = 'NL'; // Adding The Netherlands as a risk country
	return $countries;
}
add_filter( 'wc_af_rule_countries', 'wc_af_example_rule_countries' );