Condless
Forum Replies Created
-
The state code displayed instead of the state name in all of the Emails? can you try to trigger an email manually (edit order => order actions => resend email)?
Try this to fix the display in the order tracking page:
add_filter( 'csz_enable_cities', 'csz_disable_cities_page' ); function csz_disable_cities_page( $cities_enabled ) { return false !== strpos( $_SERVER['REQUEST_URI'], 'order-tracking' ) ? false : $cities_enabled; }Hi, the code in the docs was updated so the states will be loaded in WCFM pages, loading of the cities may be availabe in the future
Hi Alex,
To prevent incompatibility issues with the WCFM plugin it may be better to disable the loading of the cities in WCFM pages- redownload the plugin again and copy the code from the Docs Integrations WCFM section into your theme’s functions.php fileHi, remove from the plugin the line (875):
delete_user_meta( $user_id, $load_address . '_new_state' );Dear Alex,
Please redownload the plugin from the WordPress Plugin Directory, than the filter should appear in my account pageForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] חלוקה לאזורי משלוח באותה העירהיי, נסה לפי המפה שבדף זה
Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] חלוקה לאזורי משלוח באותה העירלאחר שבחרת את ישראל בהגדרות תוסף ולחצת ‘שמירת שינויים’, עבור ללשונית משלוח, הוסף אזור משלוח (למשל בשם תל אביב 1) ובשדה ‘אזורים בתוך אזור’ בחר את העיר (למשל תל אביב), לחץ על ‘הגבלה למיקוד ספציפי’ ובחר את המיקודים שברצונך להגביל, והוסף את שיטות המשלוח שמתאימות לאזור זה. הוסף אזור משלוח נוסף (למשל תל אביב 2) ובצע את אותם השלבים אך עם הגבלה למיקודים אחרים. לאחר מכן גרור את אזורי משלוח אלו לראש רשימת אזורי המשלוח.
הסבר על יצירת אזורי משלוחHi Alex,
In the next version of the plugin the state filter will be displayed at the cart page by default, in order to manipulate the field args you may use the ‘csz_shipping_calculator_state_filter_args’ filterForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] חלוקה לאזורי משלוח באותה העירהיי אורן,
הדרך המומלצת ליצירת אזורי משלוח לאזורים שבתוך העיר הינה בעזרת הגבלה לפי מיקודForum: Plugins
In reply to: [User Posts Limit] Multisite, global settings?Hi Laura,
In each sub-site: go to the plugin settings, modify the ‘Plugin Management Capability’ option into ‘edit_plugins’ and set a rule that limits Shop Manager to its right number of products (30/60/50).Hi, can you take screenshot of the problem in the shipping calculator?
Dear Alex,
Please update the plugin to its latest version, and copy the up to date code from the docs into your shipping calculator templateHi Alex,
In order to have the state filter in the cart page, copy the code from the plugin docs (under the ‘Options’ section) into your shipping calculator templateForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Include StateSince the plugin replaces the original country’s states with the country’s cities, WooCommerce sees those cities as the states of the country, that why you see the city of “João Pessoa” instead of ‘Paraíba’ in this setting.
Your settings are configured properly and WooCommerce should work as usual.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Include StateHi,
In the plugin code replace this line:
if ( ! is_admin() && 'yes' === get_option( 'wc_csz_new_state_field' ) && $country_code === WC()->countries->get_base_country() ) {
with this one:
if ( ( ! is_admin() || apply_filters( 'csz_admin_city_state_prefix', false ) ) && 'yes' === get_option( 'wc_csz_new_state_field' ) && $country_code === WC()->countries->get_base_country() ) {and add this to your theme’s functions.php file:
add_filter( 'csz_admin_city_state_prefix', '__return_true' );