flycart
Forum Replies Created
-
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] How to show discount table at product page?Hi
In WooCommerce -> Woo Discount Rules -> Settings -> Price rules tab, please turn on the Show discount table.
Here is a guide
https://docs.flycart.org/woocommerce-discount-rules/faqs/all-about-discount-tableIf you have any further questions, please feel free to submit a support request at https://www.flycart.org/support
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Discount table not showing properlyHi
Here is the fix
Edit woo-discount-rules\helper\general-helper.php
Around line 833, you will find
if((is_array($data) || is_object($data)) && count($data)){ return true; }Change this to
if((is_array($data) || is_object($data))){ if(is_object($data)) $data = (array)$data; if(count($data)) return true; }Save.
The issue occurs on in PHP 7.2… in other PHP versions, this does not occur.
The fix will be included in the next update.
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Discount table not showing properlyHi
Thank you for reporting the issue.
We just released an update with the fix for it.. Can you please update to the latest version which is 1.7.11
That should sort out the issue. If it persists, please let me know.
Thanks
Ramesh
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Not workingIs it possible to submit a support request https://www.flycart.org/support
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Woocommerce Subscriptions discounts?Hi
Thank you for reaching out.
While it is possible to provide a discount on the initial payment, unfortunately it is not possible to offer discount on the recurring charges.
You may want to consider other discount plugins in the market that can offer a discount on the recurring weekly charges.Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Custom User RolesHi
Yes. You can do a user role based discounts.
However, does the discount be set per product ? or is it like a bulk quantity discounts for all products in the store or category ?If you can ping us at the Live Chat or leave a message at https://www.flycart.org/support, we will be able to get back to you.
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Discount badge always shownSince quite a number of store owners wanted to show the Sale Badge if a product was part of any rule, we had provided that option. In the next update, we will fine tune and give bit more control on the display.
You can however, disable showing the Sale Badge for the dynamically discounted products by going to the Plugin settings – Price rules tab
Set the Show Sale Badge to Do Not Show.That should also solve the crossed-out price issue.
If you need any further assistance, please feel free to reach us at https://www.flycart.org/supportThanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] dropdown fieldIs it possible to submit a support request at https://www.flycart.org/support
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] dropdown fieldPlease go to the WooCommerce -> Woo Discount Rules -> Settings -> General tab
Set the Enable Dropdowns parameter to YES.
SAVE.If you face any further issues, please feel free to reach out to https://www.flycart.org/support
Thanks
RameshHi
Thank you for reaching out.
Can you please try this compatibility snippet
https://docs.flycart.org/woocommerce-discount-rules/compatibilities/compatibility-woocommerce-product-add-onsThis works for WooCommerce Product Add-ons. It should also work for WooCommerce Extra Product Options as well as both are similarly written plugins.
IMPORTANT: Make sure you add the snippet using the Code Snippet plugin.
If you face any issues, please post a support request at https://www.flycart.org/support
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Wrong sale badgeIt is be possible when you have just one rule with a single discount.
Please send us a support request at https://www.flycart.org/support
We can provide you a snippet that you can use at the custom “Sale” text to show the discount.However, if you have multiple rules with different conditions, then showing a discount percentage or price on a sale badge might not be correct.
A simple example:
Let’s say, you have a tiered discountBuy 5 – 9, get 10%
Buy 10 – 20, get 15%Now if the Sale badge is shown with 10% discount on it, this will convey a wrong message. Customer will assume that the product has 10% discount starting from quantity 1. But that assumption is wrong according to the rule.
Here is a complex rule example:
Let’s say, you have: Buy Product A, get 20% discount on Product B.
In this case, the discount percentage in Sale tag can be shown only if the customer added the Product A to cart. Until that, he is not eligible for discount.Because of these scenarios, by default WooCommerce only shows the “Sale” text badge. But a few theme providers customize it by showing a percentage comparing the regular – sale prices. Nothing wrong. But when you go for a dynamic pricing/discounts, this concept might not be applicable.
Hope this makes sense.
Thanks
RameshHi
It seems the price calculator overrides the pricing hooks, removing the discounts (probably our plugin runs first before the calculator plugin)
Is it possible to send us a support request at https://www.flycart.org/support
We have a few compatibility snippets that might help in this situation.
Thanks
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Sale badge/flash textAt the moment, you can statically enter the percentage using the snippet and remove the snippet after the discount campaign ends.
You can use the Code Snippets plugin to easily add/remove the snippets
https://wordpress.org/plugins/code-snippets/In the future updates, we will consider an option to customize the Sale text
Thanks again
RameshForum: Plugins
In reply to: [Discount Rules for WooCommerce] Incompatible with Currency Converter WidgetThank you. Really appreciate it.
Ramesh
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Sale badge/flash textHi
It is a static text that comes from WooCommerce.
If you would like, you can customize it using this guide
https://www.cloudways.com/blog/change-sale-badge-text-in-woocommerce/However, if you wanted to display a sale percentage, you can… However, it might not be ideal to showcase a discount percentage in the Sale badge when you have multiple rules, applying under multiple conditions.
Thanks
Ramesh