Condless
Forum Replies Created
-
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.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Zone region, batch selectionHi,
This tool can be used to insert multiple cities into some shipping zone at once, It’s not mandatory to use it.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Equal prices for all districtsYes,
In the ‘Region de la zona’ field, you can insert the code of the region, for example the code for Lima region is: LMAForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Equal prices for all districtsHi,
This is the WooCommerce Shipping Settings, please go to the Cities plugin’s settings and make sure Peru is selected in the first option and see the ‘Bulk Select Tool’ at the bottom of the settings.Hi,
Please try to make the following modifications in the plugin’s main file:
Replace this:if ( in_array( $data['billing_country'], get_option( 'wc_csz_countries_codes' ) ) ) {with this:
if ( isset( $data['billing_country'], $data['billing_state'] ) && in_array( $data['billing_country'], get_option( 'wc_csz_countries_codes' ) ) ) {and replace this:
if ( in_array( $data['shipping_country'], get_option( 'wc_csz_countries_codes' ) ) ) {with this:
if ( isset( $data['shipping_country'], $data['shipping_state'] ) && in_array( $data['shipping_country'], get_option( 'wc_csz_countries_codes' ) ) ) {Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Equal prices for all districtsIn the ‘Region de la zona’ field, you can insert the code of the region, for example the code for Lima region is: LMA, then all its districts will be inserted to the shipping zone you select in the last option (Zona B).
The regions/cities codes are available via:
https://plugins.svn.wordpress.org/cities-shipping-zones-for-woocommerce/trunk/i18n/cities/PE.phpHi Pascual,
Please make sure the billing and shipping country field is not removed from Checkout.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Price per unitThe ‘Price Suffix’ field accepts html, so you can write in it:
<div class="my-class">unit</div>Forum: Plugins
In reply to: [Unit Price for WooCommerce] Price per unitHi,
You can use the ‘Price Suffix’ option to add free text to the price.Forum: Reviews
In reply to: [Unit Price for WooCommerce] Good but needs a bulk editor‘How to apply some Quantity Units for all products from certain categories?” was added to the Docs, keep in mind that this feature is suitable only for products that are sold by units but priced by weight (such as fish).
Forum: Reviews
In reply to: [Unit Price for WooCommerce] Good but needs a bulk editorHi,
See in the plugin’s docs:
“How to apply some Quantity Step for all products from certain categories?”Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Equal prices for all districtsHi,
At the bottom of the plugin’s settings (Dashboard => WooCommerce => Settings => Cities Shipping Zones).Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Equal prices for all districtsHi,
For which city?
If the city is splitted into distrcits you may use the ‘Bulk Select’ tool (via the plugin settings) to insert multiple locations at once.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Subtotal in archive pagesHi,
The plugin supports only the default WooCommerce archive pages.