Condless
Forum Replies Created
-
Forum: Plugins
In reply to: [Unit Price for WooCommerce] Problem displaying suffixes in the mini cart.Hi,
The price suffix should be displayed correctly in the mini-cart.
Please try to disable the server/hosting cache.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Problem displaying suffixes in the mini cart.Hi,
The price suffix function is attached to the ‘woocommerce_cart_item_price’ hook.
There may be issue with your theme, please try to temporarily replace it.Hi,
By default the ‘add to cart’ button shouldn’t fire when incorrect value is specified, please try to replace to some default theme (as Storefront).
The ‘Quantity Auto Update’ option (plugin’s settings) is enabled?
Can you attach list of the theme and active plugins or link to the website?Forum: Plugins
In reply to: [Unit Price for WooCommerce] Problem with products added by shortcodeHi,
Please try the ‘How to display the quantity field of the ‘Archive Quantity’ option only on fully supported pages?’ from the plugin’s docs.Forum: Plugins
In reply to: [User Posts Limit] Woocommerce integrationHi,
You will have to add 2 code snippets into your theme’s functions.php file:
1. The “How to allow posts limit per user” from the plugin docs.
2. The WooCommerce integration code:
https://www.condless.com/wp-content/uploads/wc-upl-integration
Settings are in the ‘Posts Limit’ tab of the product edit screen.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] can not see city in woocommerce orderHi Liza,
Please make sure the billing_country and shipping_country fields are enabled via the Checkout Fields Editor plugin.Hi Shlomo,
Those notices aren’t affecting the functionality of the website/plugin and can be ignored.Hi,
You can use the “How to modify cities names?” from the plugin’s docs to rename it from ‘eThekwini’ to ‘eThekwini (Durban)’.- Try to disable the ‘Top’ option (plugin settings) and the ‘Out of stock visibility’ option (WooCommerce > Settings > Products > Inventory settings).
- To apply the defaults on the ‘quick view’ try the ‘How to apply the defaults on all the pages and not just the single product page?’ from the docs.
Hi,
Please try to disable the ‘Out of stock’ option, and to temporarily deactivate the ‘Variation swatches’ plugin.Hi,
WooCommerce will not display the shipping cost untill the postcode field is entered (unless the field is optional), since the postcode field is not displayed in the shipping calculator anyway it can be set as optional using the following code:add_filter( 'woocommerce_get_country_locale', 'csz_postcode_optional_on_cart' ); function csz_postcode_optional_on_cart( $locale ) { if ( is_cart() ) { foreach ( get_option( 'wc_csz_countries_codes' ) as $country_code ) { $locale[ $country_code ]['postcode']['required'] = false; } } return $locale; }Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Change default state namesHi,
Please try to redownload the plugin and use the following code snippet (update the state code and the state name):add_filter( 'csz_states', 'csz_modify_states_names' ); function csz_modify_states_names( $states ) { $states_names = [ // State code => state name 'AMA' => 'New name1', 'ANC' => 'New name2', ]; foreach ( $states_names as $state_code => $state ) { if ( isset( $states[ $state_code ] ) ) { $states[ $state_code ] = $state; } } return $states; }Hi,
Please try another hook: woocommerce_default_address_fieldsForum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] How to Translate to arabicHi,
Please refer to the plugin’s docs:
‘How to translate cities names?’Hi Pradhan,
1. Try to enable the ‘State Filters’ option (via the plugin’s settings)
2. If it will stay always the same flat rate shipping for all of the 6 states- 1 zone for all of them.