How to add Woocomrce cart page shipping calculator to my country state list

Im beginner for the word press ,
I don’t know if the issue is because of the . The problem is that the “calculate shipping” option on my cart page doesn’t allow users to select my country / state list, only allowed postal code

i want to know How to add Woocomrce cart page shipping calculator to my country state list, reason my country state list not here

example

enter image description here

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Add this snippet to the functions.php file of your theme to add a new country to the WooCommerce countries list.

add_filter('woocommerce_states', 'sa_woocommerce_states');
add_filter('woocommerce_countries_allowed_country_states','sa_woocommerce_state');

function SA_woocommerce_states( $states ) {

    $states['ZA']['EC'] = __('Eastern Cape', 'woocommerce');
    return $states;
}


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x