Condless
Forum Replies Created
-
Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] מדינה/מחוזנסי להוסיף שדה בשם: billing_country
אם לא עוזר אפשר ללחוץ ‘איפוס הגדרות’ בתוסף Checkout FormForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] מדינה/מחוזהיי ליזה,
שדה המדינה צריך להופיע, שדה המיקוד לא חובה.Hi Omar,
Try to enable the ‘Selling locations’ option (via the Cities plugin settings), then only cities that was chosen inside shipping zones will be displayed.1. To add ‘OTHERS’ add this code into your child theme’s functions.php file:
add_filter( 'csz_cities', 'csz_modify_cities_names' ); function csz_modify_cities_names( $cities ) { $country = 'SA'; $cities_names = [ 'SAASZJ' => __( 'OTHERS' ), ]; foreach ( $cities_names as $key => $city ) { if ( isset( $cities[ $country ][ $key ] ) ) { $cities[ $country ][ $key ] = $city; } } return $cities; }2. You can insert to this field multiple cities seperated by ;, For example:
Abha;Abu Arish;AfifForum: Plugins
In reply to: [User Posts Limit] Exclude posts in trashHi,
Please see in the plugin’s docs:
‘How to make rules that applied on certain post type to limit only specific post statuses?’Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Shortcode, shipping rate w/o VATHi,
The plugin was updated to take into account the tax, please redownload the plugin.1. Try to fill all the checkout fields before checking the shipping rate.
2. There is error in the script (try to remove it or temporarily replace your theme):
document.getElementsByClassName("breadcrumbs")[0].style.display="inline";1. Disable the ‘Selling locations’ option (Cities plugin settings)
2. Drag the ‘Closed Cities’ Shipping zone in the Shipping Zones list to be above the ‘Everywhere’ shipping zone (WooCommerce Shipping settings).You can add ‘Free Shipping’ method (with restriction of minimum order amount) to all of the shipping zones, so it will be free regardless of the customer’s city.
Hi marchajj,
1. Disable the ‘State / Country Autofill’ and ‘Selling locations’ options.
2. Enable the billing and shipping state fields in your checkout fields manager plugin.
3. Go to WooCommerce Shipping Settings, add shipping zone, choose the cities in the ‘Zone regions’ Field, and add ‘Flat rate’ shipping method with the desired price for those cities.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Warning with php 8.1Hi Sergio,
Please temporarily disable the plugin, go to the shipping zones settings, remove the states of Italy (RM, MI, CA, NU, OR, SS, SU) from all of the shipping zones, save changes, and activate the plugin.Forum: Plugins
In reply to: [Default Attributes for WooCommerce] Doesn’t seem to be working?Hi,
The plugin works in the opposite way, if green was the only in-stock variation, it would be set as default.
You can use the ‘How to force in-stock default variation when no default attributes are set?’ from the plugin docs.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Cities missing from South AfricaHi,
Middelburg should be present, Durban appears as ‘eThekwini’, you can change its name (see instruction in docs: ‘How to modify cities names?’).Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Customer’s City@nevillecampher,
Make sure to disable the billing_city/shipping_city and enable the billing_state/shipping_state fields.@miraroz,
Yes, shipping zones will not be deleted.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Customer’s CityHi,
Please disable the ‘Required’ option for the city field via the Checkout Fields Editor plugin.