wordpress - Limit country to just on in dokan plugin -


i using dokan plugin , want limit countries selection 1 in shipping page , setting page. removed other countries woocommerce i18n folder countries.php nothing changes.

you can use woocommerce country filter achieve result.

add_filter( 'woocommerce_countries', 'rt_modify_country_list' );  function rt_modify_country_list( $countries ){      $countries = array(         'bd' => 'bangladesh',         'cn' => 'china'      );      return $countries; } 

thanks


Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

transpose - Maple isnt executing function but prints function term -