Condless
Forum Replies Created
-
Forum: Plugins
In reply to: [Unit Price for WooCommerce] Subtotal in archive pagesHi,
The subtotal should be displayed in the archive pages, this feature may conflict with your theme/plugins, to identify the conflict please try to temporarily replace your theme, and deactivate the Elementor and Quantity Plus Minus Button plugins.Forum: Plugins
In reply to: [User Posts Limit] How do I use this with WP User Frontend?Hi Pete,
Choose ’embed’ in the Notification option (plugin’s settings), and create rule for the post type that the WP User Frontend form is creating.Forum: Plugins
In reply to: [Unit Price for WooCommerce] Manage different weight unitsHi,
The feature which display the price per unit is only suitable for products which are sold by units and priced by weight (as fish).Forum: Plugins
In reply to: [User Posts Limit] Apply different Limit for Published page and draftsHi,
The plugin checks the quota only on post creation and not on post status change (draft/publish), so it’s not possible to limit published posts but allow drafts.Hi Bretler,
The customer can select his city in the cities dropdown field on checkout page, the admin can config shipping price per city in the shipping zone edit screen (via WooCommerce Shipping settings).Hi Christian,
That’s a known issue and shouldn’t affect the functionality.Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] High-Performance Order Storage (HPOS)Hi,
The latest version (v1.2.3) supports HPOS.Forum: Plugins
In reply to: [User Posts Limit] [upl_limits] front end nameHi,
If the name of the custom post type is ‘Gallery’ it should be displayed automatically, anyway you can use:[upl_limits format= "Gallery {count} / {limit}"]Forum: Plugins
In reply to: [User Posts Limit] Error!Hi,
The configured message will be visible only if the users will create posts from the WordPress dashboard. Please try to use the above mentioned shortcode.Forum: Plugins
In reply to: [User Posts Limit] Error!Hi,
1. You did not receive the message that you had placed since the posts are created from the frontend the not from the WordPress dashboard.
You can wrap the form with the shortcode[upl_hide type="post"][/upl_hide](update your post type) to make it hidden when the limit is exceeded.
2. What happens when you try to create the second rule?Forum: Plugins
In reply to: [User Posts Limit] Shortcode to display post limit based on user roleHi,
You can add the following code into your child theme’s functions.php file and use the shortcode[upl_role_limit role="author"]add_shortcode( 'upl_role_limit', 'wp_upl_role_limit_shortcode' ); function wp_upl_role_limit_shortcode( $atts ) { if ( isset( $atts['role'] ) ) { $num_limit = get_option( 'upl_num_limit' ); $roles = get_option( 'upl_user_role' ); for ( $i = 0; $i < get_option( 'upl_rules_count' ); $i++ ) { if ( $roles[ $i ] === $atts['role'] && isset( $num_limit[ $i ] ) && '' !== $num_limit[ $i ] ) { return $num_limit[ $i ]; } } } return __( 'No limit' ); }Forum: Plugins
In reply to: [Cities Shipping Zones for WooCommerce] אילת והערבההיי,
העיר אילת נמצאת ברשימת הערים.
על מנת להזין בבת אחת את כל הערים של אזור מסוים ראי הסבר.Hi,
It will require to develop few functions from scratch (such as ‘wc_ajax_add_to_cart’, ‘wc_variable_set_item_quantity’, ‘wc_variable_set_item_quantity_js’).Hi,
The plugin can’t handle such case.
You can hide the variation selection for this product on archive page:add_filter( 'upw_archive_variations', 'wc_disable_product_variation_shop_page', 10, 2 ); function wc_disable_product_variation_shop_page( $enabled, $product ) { $disabled_products = [ '432', '622' ]; // Update the products id return in_array( $product->get_id(), $disabled_products ) ? false : $enabled; }Forum: Plugins
In reply to: [Unit Price for WooCommerce] Problem displaying suffixes in the mini cart.Hi,
Please make change in the plugin (the same change will be applied in the next plugin version), from:if ( ! is_admin() && 'yes' === get_option( 'wc_upw_product_price_adjust' ) ) { add_filter( 'woocommerce_get_price_html', [ $this, 'wc_adjust_price_display' ], 10, 2 ); add_filter( 'woocommerce_cart_item_price', [ $this, 'wc_adjust_cart_price_display' ], 10, 2 ); }to:
if ( 'yes' === get_option( 'wc_upw_product_price_adjust' ) ) { if ( ! is_admin() ) { add_filter( 'woocommerce_get_price_html', [ $this, 'wc_adjust_price_display' ], 10, 2 ); } add_filter( 'woocommerce_cart_item_price', [ $this, 'wc_adjust_cart_price_display' ], 10, 2 ); }