Condless
Forum Replies Created
-
There is only option to select cities inside shipping zones, and not states, in order to create shipping zone for a state, you will have to put all its cities in the shipping zone, which can be acheived using the ‘Bulk Select Tool’.
Hi Pradhan,
Use the ‘Bulk Select Tool’ (plugin settings) to insert all the cities of certain states to some shipping zone. The ‘Zone regions’ field accepts cities and states (codes or names).Forum: Plugins
In reply to: [User Posts Limit] New cycle of 3 monthsHi,
Please refer to the plugin’s docs:
How to modify the cycle for rules that applied on certain post type?You can use $cycle = ‘3 month ago’;
Forum: Plugins
In reply to: [User Posts Limit] Custom cycles (5 month)Hi,
The updated cycle won’t show up in the settings, but you can track the up to date posts count via the Users screen.
Try the following code (make sure the slug of the user role is accurate):add_filter( 'upl_query', 'upl_modify_cycle', 10, 2 ); function upl_modify_cycle( $args, $i ) { $post_type = 'post'; $user_role = 'gold'; $cycle = '5 month ago'; if ( $post_type === $args['post_type'] && $user_role === get_option( 'upl_user_role' )[ $i ] ) { $args['date_query']['after'] = $cycle; } return $args; }Forum: Plugins
In reply to: [User Posts Limit] Custom cycles (5 month)Hi,
Please refer to the plugin’s docs:
‘How to modify the cycle for rules that applied on certain post type?’
The value of the $cycle can be ‘5 months ago’Hi,
Try to unpublish the Elementor pro template of the product shop/product archive so the default theme template will be used.Hi,
Is it Elementor or Elementor Pro? try to unpublish the product archive template in elementor (so the default theme template will be used), and enable the ‘Qauntity (Shop pages)’ option in the Unit Price settings.Hi,
In addition, try to deactivate all the plugins (except WooCommerce and Unit Price) to see if it solves the issue.Please try to install the above mentioned Qty buttons plugin, if it doesn’t solve the issue try to temporarily switch to another theme to verify there is no conflict with you theme.
Hi,
Which theme and plugins are installed?
Please try to use the following plugin for Quantity Buttons:
https://wordpress.org/plugins/qty-increment-buttons-for-woocommerce/Hi,
It’s not possible, can you take screenshots of the issue?Hi,
What is the URL of the website?Hi Pierre and Darren,
The product price in kg is actually the order item cost, which can be displayed in the template using:
echo wc_price( $order->get_item_subtotal( $item, false, true ), array( 'currency' => $order->get_currency() ) );Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] Cities missing in RomaniaHi,
The localities are part of the ‘Municipiul Focsani’, you can create shipping zone for Municipiul Focsani and add multiple shipping methods (‘shipping to Mândrești-Munteni’, ‘shipping to Mândrești-Moldova’ and so), the customer will choose the appropriate method on checkout.Forum: Plugins
In reply to: [User Posts Limit] Limit withnCustom Product Addons and valuesHi,
Unfortunately the plugin is not intend to restrict purchases by specific products/products options, try ‘Order Limit’ plugin.