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
Post a Comment