Add 8 more countries to the list

This commit is contained in:
Luminus Olumide Alabi 2019-11-09 10:54:09 +00:00
parent a09efed82e
commit 36821c88a8
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ class WC_Countries {
* @return string[]
*/
public function countries_using_vat() {
$countries = array( 'AZ', 'BS', 'BH', 'BY', 'BB', 'EG', 'ET', 'FJ', 'GM', 'GH', 'IN', 'IR', 'IL', 'KZ', 'MU', 'MK', 'MX', 'MD', 'MN', 'ME', 'NA', 'NP', 'NG', 'PS', 'PY', 'RU', 'RW', 'KN', 'SA', 'RS', 'ZA', 'KR', 'LK', 'TH', 'TR', 'UA', 'UY', 'UZ', 'VE', 'VN', 'AE' );
$countries = array( 'AL', 'AR', 'AZ', 'BS', 'BH', 'BY', 'BB', 'BO', 'EG', 'ET', 'CL', 'CO', 'EC', 'SV', 'FJ', 'GM', 'GH', 'GT', 'IN', 'IR', 'IL', 'KZ', 'MU', 'MK', 'MX', 'MD', 'MN', 'ME', 'NA', 'NP', 'NG', 'PS', 'PY', 'RU', 'RW', 'KN', 'SA', 'RS', 'ZA', 'KR', 'LK', 'TH', 'TR', 'UA', 'UY', 'UZ', 'VE', 'VN', 'AE' );
return apply_filters( 'woocommerce_countries_using_vat', $countries );
}