Created
February 13, 2020 05:48
-
-
Save webtoffee-git/d5551b3ad1aa59ebaca5b7ad227e2ff6 to your computer and use it in GitHub Desktop.
WooCommerce restrict only Shipping State for selected country
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_action( 'wp_footer', 'webtoffee_checkout_shipping_filter_it_states' ); | |
| function webtoffee_checkout_shipping_filter_it_states() { | |
| if ( ! is_checkout() ) { | |
| return; | |
| } | |
| ?> | |
| <script> | |
| jQuery(document).ready(function($) { | |
| $(document.body).on('country_to_state_changed', function() { | |
| var $shipping_country = $('#shipping_country'); | |
| var new_shipping_state = ''; | |
| switch($shipping_country.val()) { | |
| case 'IT': | |
| new_shipping_state = {'TV': "Treviso", "CA": "Carità", "Cs": "Castrette"}; | |
| break; | |
| } | |
| if( ! $.isEmptyObject(new_shipping_state)) { | |
| var optionsAsString = ""; | |
| for (var key in new_shipping_state) { | |
| optionsAsString += "<option value='" + key + "'>" + new_shipping_state[key] + "</option>"; | |
| } | |
| $( 'select[name="shipping_state"]' ).html( optionsAsString ); | |
| } | |
| }); | |
| }); | |
| </script> | |
| <?php | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment