mantish
Forum Replies Created
-
Wow, that’s super weird.
Thanks for figuring it out @yward
If you manage to fix it and can contribute a PR it would be highly appreciated!Hi, I checked again with the latest versions of WP and WC and it’s still working fine on my end.
I’m sorry to hear it isn’t working for you ??
Please let me know if you find out any other information about the errorIt should work fine with those WP and WC versions. It’s very strange that it works fine in the MyAccount section but not in the Checkout page.
Are you using any of the countries included in the plugin or your own list? Maybe you can check if the selected country affects it somehowWhat versions of WordPress and Woocommerce are you using?
Does it behave as if the plugin wasn’t there? or is it broken in some other way?Hi,
The plugin should work fine in the checkout page.
Do you see any errors?
It’s possible that another plugin is conflicting with this one. Maybe you can try disabling other plugins to test that out.Hi, thanks for reporting this.
It was added in the latest version of the plugin. Sorry that it took so long to add it.Forum: Plugins
In reply to: [WC City Select] Egyptian CitiesHi, thanks for the heads up! I’ll update it
Forum: Plugins
In reply to: [WC City Select] woocommerce hpos updateHi,
The plugin doesn’t change anything related to WooCommerce orders system, so it should be compatible with HPOS.
I’ll declare compatibility in the next releaseForum: Plugins
In reply to: [WC Variations Radio Buttons] HPOS CompatibilityHi, you’re right.
The plugin doesn’t change anything related to WooCommerce orders system, so it should be compatible with HPOS.
I’ll declare compatibility in the next releaseForum: Plugins
In reply to: [WC Variations Radio Buttons] Variation images not swapping after updatesHi, thanks for reporting.
I just tested using the latest versions of WP and WC, and it works well for me using Storefront and other themes.It’s possible that there’s a conflict with some other plugin. Maybe you can try checking with other plugins disabled
Forum: Plugins
In reply to: [WC City Select] Documentation neededHi @kuwaitman, the plugin should support those pages without any additional configuration.
I think we can improve the description. Where it says “…shipping calculator if it’s configured that way”, it means that you can configure WooCommerce to show a shipping calculator in the cart page.If it doesn’t work in your page, it could be related to the theme you’re using. Maybe you can try switching the theme and see if it works.
Forum: Plugins
In reply to: [WC City Select] Adding districtHi,
No, this isn’t possible at the moment with the pluginForum: Plugins
In reply to: [WC City Select] Fix for Translating City namesHi, thanks for sharing this.
Would you like to make a PR in github: https://github.com/8manos/wc-city-select
Forum: Plugins
In reply to: [WC City Select] The dropdown of town/city doesn’t workHi,
The problem I see here is that you’re not using a state code. You should use a 3-letter code instead of “Metropolitana de Santiago”.I can see that WooCommerce doesn’t include the states from Chile, so you probably need to add them like this:
add_filter( 'woocommerce_states', 'my_states' ); function my_states( $states ) { $states['CL'] = array( 'XXX' => 'Name of state XXX', 'YYY' => 'Name of state YYY', etc ) return $states; }
Another option would be to use the city names without a state. Like this:
add_filter( 'wc_city_select_cities', 'my_cities' ); function my_cities( $cities ) { $cities['CL'] = array( 'Provincia de Chacabuco', 'Provincia de Cordillera', 'Provincia de Santiago' ); return $cities; }
Hi, your code looks fine and it’s loading correctly if you see the right cities when you refresh.
There’s probably some JS issue with your theme or another plugin. Do you see any errors in the console?