Condless
Forum Replies Created
-
Hi,
Since its custom fields this will require customization, you will have to create function which erase those ‘none’ values on order creation.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Issue with state lable in AdminHi,
I couldn’t reproduce the issue, can you attach a screenshot?
Does the problem remain if you try to create an order for Lagos state while the Cities plugin is deactivated?Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Issue with state lable in AdminHi,
Please make sure the billing/shipping country fields are present on checkout.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Weight price not displayedHi,
You can hide the main price, see in the docs:
“How to hide the products’ main price on archive pages”Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] ????? ?????? ?????????,
???? ???? ???? ?????
??? ????? ???? ???? ?????? ???? ?????? ?? ?? ?? ????? ???????? ?????:
billing_state, shipping_stateForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Change text label in checkoutHi,
Please try the following code into your theme’s functions.php file:add_filter( 'woocommerce_get_country_locale', 'wc_set_locale_field_labels', 9999 ); function wc_set_locale_field_labels( $locale ) { $country_code = 'NG'; // Update your country code $locale[ $country_code ]['new_state']['label'] = __( 'State', 'woocommerce' ); $locale[ $country_code ]['state']['label'] = __( 'Local government area', 'woocommerce' ); return $locale; }
Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] add self collectionHi,
Please see this video.
The ‘Local pickup’ method should be added to all of your configured shipping zones.That’s not the right line, you should be able to locate the exact line of code as here (line 1056).
Do you use the latest plugin version?Hi,
Please go to the Cities plugin’s main file and change this line:if ( $state_enabled && in_array( WC()->countries->get_base_country(), get_option( 'wc_csz_countries_codes' ) ) ) {
into this:if ( did_action( 'woocommerce_before_shipping_calculator' ) && ! did_action( 'woocommerce_after_shipping_calculator' ) && $state_enabled && in_array( WC()->countries->get_base_country(), get_option( 'wc_csz_countries_codes' ) ) ) {
Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] add self collectionThe ‘local pickup’ method should be added to all of the shipping zones, ‘Flat rate’ method should be added only to shipping zones with cities which have delivery service.
Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] add self collectionHi,
Via WooCommerce shipping settings, you can add ‘local pickup’ method to all of your shipping zones.Forum: Plugins
In reply to: [User Posts Limit] Limit not workingHi,
This is the expected behaviour, since the plugin stops the proccess only when the file becomes an attachment (it happends after the file is uploaded).Forum: Plugins
In reply to: [Unit Price for WooCommerce] Update cart via ajax single product pageHi,
The plugin doesn’t offer such feature.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Translation problemHi,
WordPress built-in translation editor should be used.Forum: Plugins
In reply to: [User Posts Limit] wordpress multisiteHi,
The display of the limits doesn’t take into account the network-wide rules, but they should work as usual when user tries to create post.