Emily Wilson
Forum Replies Created
-
Hello @leyako
Thank you for your question.
It doesn’t have fully automatic compatibility with WPML yet but we will add it in the next versions.
Please ask your PRO version related questions here.
Indeed, the free version is the core version of the plugin, while the pro version uses the same core code without adding unnecessary elements. The free version is required for the pro.
The PRO version utilizes core version files and codes whenever possible, avoiding additional files or code.
I hope it helps.
Best regards
- This reply was modified 1 week ago by Emily Wilson.
You are welcome.
Please ask your PRO version related questions here.
Indeed, the free version is the core version of the plugin, while the pro version uses the same core code without adding unnecessary elements. The free version is required for the pro.
We’re just very critical of the number of plugins and the website’s speed due to the number of active plugins.
The PRO version utilizes core version files and codes whenever possible, avoiding additional files or code.
I hope it helps.
Best regards
Hello @leyako
Thank you for your question.
Currently, the only possible way is to edit the bundle product in the second languages and select products of that language in the bundle configuration. So the process will be:
- Create the bundle in the main language and save it.
- Switch to the second language in the admin, edit the bundle product, then edit each item and select products, categories, tags of the item from the second language and save it.
We will add automatic WPML support in the next versions.
Thanks for your patience.
Best regards
Hello @leyako
Thank you for your question.
In the badge configuration, there is a “translate” button next to the badge label, which you can use to translate the text. For the banners, there is a “translation” tab available where you can add your translations.
I hope it helps.
Best regards
Hello @bernaertsmusic
Thank you for choosing our plugin.
We apologize for the inconvenience.
Please let us know do you have any Javascript error in your browser console? If there is any, please send us more details about the error messages.
If you check it out on our demo website it is working fine.
Maybe there is a conflict on your website causes this issue. To troubleshoot, deactivate all plugins except WooCommerce and the Badge plugin. Test the functionality; if it works correctly, reactivate the plugins one by one to pinpoint the one causing the issue.
I hope it helps.
Best regards
Hello,
Thank you for your feedback.
We would like to provide additional context regarding the performance concerns and support process.
Our plugin provides a broad range of dynamic pricing and discount features, including product-based, cart-based, customer-based, role-based, purchase history, and many other advanced conditions. Because some pricing rules depend on information that changes dynamically, certain calculations must be performed in real time and cannot always be fully cached without affecting pricing accuracy.
When you contacted us regarding performance concerns, we requested additional information and suggested several troubleshooting and optimization steps to better understand the issue within your WooCommerce environment. We also explained that some advanced rule types may require more processing than simpler pricing rules and discussed alternative approaches where appropriate.
Based on the information available to us, we were unable to conclusively identify the source of the reported slowdown. As a result, we offered to continue investigating the issue and discussed potential enhancements and additional optimization options that could benefit stores with similar requirements.
During these discussions, the focus shifted toward a refund request. While we remained willing to continue troubleshooting and exploring possible solutions, a refund was requested before a full technical investigation could be completed. It is also important to note that the refund request was made approximately six months after purchase and after an extended period of active use of the plugin.
Although our published refund policy does not normally cover requests after such a period, we nevertheless reviewed the request individually and attempted to assist beyond the scope of our standard policy.
We respect your decision to move to a different solution if it better suits your requirements. However, we believe it is important for other users to understand that we made repeated efforts to investigate the reported issue, provided optimization suggestions, discussed additional development options, and remained willing to continue working toward a solution.
We remain committed to continuously improving the plugin and appreciate all constructive feedback that helps us make the product better for our users.
Kind regards
Hello @sportio
Thank you for your question.
Creating discount based on stock quantity is only available in the PRO version of the discount plugin.
You can create a discount based on stock quantity using a pricing rule (changes product price) or a cart discount rules (applies as a coupon).
Please check the screenshots below.
- https://ibb.co/zVFSKky6 (pricing rule)
- https://ibb.co/QjKgJLpG (coupon)
You can try it on our demo website.
If you need further assistance and have the PRO version please contact us here.
I hope it helps.
Best regards
- This reply was modified 1 month, 2 weeks ago by Emily Wilson.
Hello @rsurfer
Thank you so much for your fantastic review and support. Love it. 💕
It is great news that the plugin could help you.
We have gotten your positive energy and we will work on the plugin to make it even better for you.
Thanks and Regards
Hello @rsurfer
Thank you so much for your fantastic review and support. Love it. 💕
It is great news that the plugin could help you.
We have gotten your positive energy and we will work on the plugin to make it even better for you.
Thanks and Regards
Hello @sberger1970
Please contact us here for your PRO version related questions, and include all of the required information like:
- The rules and issues screenshots
- Link to the product page
- Your license key
Regards
- This reply was modified 1 month, 2 weeks ago by Emily Wilson.
Hi @sberger1970
Thank you for choosing our plugin.
In the rule, you can use a “Is logged in: Yes” condition. It is a PRO version feature.
I hope it helps.
Best regards
Forum: Plugins
In reply to: [Product Bundle Builder for WooCommerce] TranslationHello @gertrude1407
Thank you for choosing our plugin.
We apologize for the inconvenience.
To translate it please read this article.
You can find NL files in the languages folder of both free and PRO versions.
For example you can take a look at the file below:
\wp-content\plugins\easy-product-bundles-for-woocommerce\languages\asnp-easy-product-bundles-nl_NL-d5291a66af17889ca87919551148890e.jsonPlease don’t forget to read this article.
I hope it helps.
Best regards
Forum: Reviews
In reply to: [Product Bundle Builder for WooCommerce] Flexibile and complete pluginHello @agensiodev
Thank you so much for your fantastic review and support. Love it. ❤️
It is great news that the plugin could help you.
We have gotten your positive energy and we will work on the plugin to make it even better for you.
Thanks and Regards
Hello @princesoham
Thank you for choosing our plugin.
We apologize for the inconvenience.
Actually, the child items is not removable on the cart or checkout. It is working correctly on both WooCommerce cart&check out shortcodes and blocks.
You can try it on our demo website examples.
- Simple Product Bundle for WooCommerce
- Dynamic Product Bundle for WooCommerce
- WooCommerce Mix and Match Product
- WooCommerce Gift Products
- WooCommerce BOGO deals
- WooCommerce Buy 2 Get 1 Free Deal
- Optional Product Bundle Items
Maybe you are using a custom cart/checkout plugin or your theme has a custom codes, so it doesn’t support WooCommerce standard filters.
You can contact your custom cart/checkout plugin developer regarding this issue. The plugin is using the codes below to disable the remove button or disable the quantity buttons.
add_filter( 'woocommerce_cart_item_remove_link', array( $this, 'cart_item_remove_link' ), 10, 2 );
add_filter( 'woocommerce_cart_item_quantity', array( $this, 'cart_item_quantity' ), 10, 3 );
public function cart_item_remove_link( $link, $cart_item_key ) {
if (
! empty( $cart_item_key ) &&
isset( WC()->cart->cart_contents[ $cart_item_key ] ) &&
is_cart_item_bundle_item( WC()->cart->cart_contents[ $cart_item_key ] )
) {
$cart_item = WC()->cart->cart_contents[ $cart_item_key ];
if ( isset( WC()->cart->cart_contents[ $cart_item['asnp_wepb_parent_key'] ] ) ) {
return '';
}
}
return $link;
}
public function cart_item_quantity( $quantity, $cart_item_key, $cart_item ) {
if ( ! is_cart_item_bundle_item( $cart_item ) ) {
return $quantity;
}
return $cart_item['quantity'];
}In the
cart_item_quantityfunction the quantity controls is disabled for bundle items.There are some codes for cart/checkout blocks too in the plugin core.
Please contact your custom cart/checkout developer and ask them a filter function to disable it for child items. They can use the code below to check is a cart_item a child item or no.
AsanaPlugins\WooCommerce\ProductBundles\is_cart_item_bundle_item( $cart_item )Or hide the quantity buttons for child products with a custom CSS code. The child products has a custom CSS class in the cart.
I hope it helps.
Best regards
Forum: Plugins
In reply to: [Discount Rules and Dynamic Pricing for WooCommerce] Coupon discountsHi @sberger1970
If all of the discounts are coupons, then you can create all of them in the plugin discounts tab, and reorder them from high priority (greater discount) to the low priority.
For example
- A 20% coupon discount and set “Apply mode: apply this rule and disregard other rules”
- A 15% coupon discount and set “Apply mode: apply this rule and disregard other rules”
- A 10% coupon discount and set “Apply mode: apply this rule and disregard other rules”
- And other lowest discounts
You can set “Apply mode” in each rule configuration.
This way if the “20% discount” is applicable then the “15%” and “10%” discounts wont apply to the cart, but if the “20% discount” is not applicable and if the “15%” discount is applicable then the “15%” discount will apply to the cart.
You can reorder the rules in the discounts tab from top priority to the lowest one.
In case the above tip doesn’t help, unfortunately there is no further options available.
If you want to change products price, then you can do it with percentage tiered discounts in the pricing tab using the same approach.
For further information please contact us here as you said you have the PRO version!
I hope it helps.
Best regards