flycart
Forum Replies Created
-
Hey
Since we haven’t heard back on this thread, let us go ahead and close the ticket.
Please feel free to open a new ticket at our website if you still have any issues. We’re happy to help 🙂Thanks
Team FlycartHey
Since we haven’t heard back on this thread, let us go ahead and close this ticket.
Feel free to open a new ticket at our website if you have any further questions.Thanks
Team FlycartForum: Reviews
In reply to: [Discount Rules for WooCommerce] Waste of timeHi
Thank you for the feedback. Really appreciate it.
Would it be possible to share the discount scenario you are trying to achieve?
If the scenario is possible with the free version, we are happy to help you with it. The free version offers a number of features including:
– store wide discount
– percentage discount
– Bulk discount. Quantity range based tiered pricing percentage discount (Example: Buy 3 to 7 quantities, get 10%, Buy 8 to 12 quantities, get 20%)
Cart based percentage discount (Example: Spend more than $1000, get 10% discount)
– Order total based discount
and more.Looking forward to assist you.
Thanks
Team FlycartForum: Plugins
In reply to: [Discount Rules for WooCommerce] Different pricing day and nightHey
Thank you for reaching out.
I am so sorry that currently we do not have + (increasing the price) option. We only cover the discounting scenarios.Thanks
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] Buy one get the second one in half priceHey
Thank you for reaching out.
Just a clarification.
Does this offer apply only to one product in your store or it applies to a few categories?Thanks
Hey
Thank you for reaching out.
I guess you are using product price adjustment rules.
These rules work like how the Regular price and Sale price works in WooCommerce. That is, the discount is adjusted directly in the pricing.
The WooCommerce Analytics only show when a coupon like discount is applied.
Example: the cart based adjustment in our plugin works like a virtual coupon.That being said, you can view basic report in our plugin as well. Please do check.
In the future updates, we are planning to provide more in-depth Analytics.Thanks
Team FlycartHey
Are you looking for something like this ?
https://docs.flycart.org/en/articles/4210448-buy-one-get-one-discount-for-products-from-same-category-2-0The guide has a free example. But you can also set a percentage like 15%
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] WooCommerce Event Manager amount changedHey
Since we haven’t heard back on this topic, let me go ahead and close the thread.
If you are still facing the issue, please open a ticket at our website.Thanks
Team FlycartForum: Plugins
In reply to: [Discount Rules for WooCommerce] Problem with woocommerce couponsHi
Thank you for reaching out.
We have an option that allows you to control whether the normal woocommerce coupon can be applied when a discount rule applies.
You can have the coupon disabled when a discount rule applies.
Here is a guide:
https://docs.flycart.org/en/articles/4178875-choose-how-discount-rules-should-work-when-woocommerce-coupons-are-used-2-0Hope this helps
Team Flycart
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] SERIOUS PROBLEM WITH PLUGINMeanwhile, here is what we see
– I am NOT logged in
– Just visited your store
– The prices are correct (as entered by you in your product page)So the issue seem to be caching. It might be taking sometime for the cache to clear fully.
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] SERIOUS PROBLEM WITH PLUGINI guess I have misunderstood.
Would it also be possible to send a screenshot of the Active plugins (i mean your wordpress dashboard -> plugins page) ?
Really appreciate it
Thanks
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] SERIOUS PROBLEM WITH PLUGINThank you for the quick response.
If you have already uninstalled our plugin, then this is most probably the “sale price” set in the products.
Can you please check whether a “Sale price” field has any value in it (which is showing in the store front?As mentioned earlier, when a plugin is uninstalled, then its files are completed removed. So there is NO way for the plugin to run and alter the prices.
Thanks
Forum: Plugins
In reply to: [Discount Rules for WooCommerce] SERIOUS PROBLEM WITH PLUGINHi
Thank you for reaching out.
Our plugin calculates and applies the discount on the fly (during the run time).
So when uninstalled, the discount will not apply.Please do check:
– If you are using the pro version, make sure you have uninstalled both the core and the PRO versions of the discount rules pluginA few other possibilities:
– May be there is a server side cache still not flushed fully?
– May be there is another discount plugin installed and that is applying the discount? (this could be a more common reason)
– If you are seeing discounted pricing for a few products, make a sale price (discounted price) set in the products.Hope this helps. If you still face any issues, please open a ticket at our website. We are happy to look into it.
Thanks
Team FlycartForum: Plugins
In reply to: [Discount Rules for WooCommerce] there is no get_sale_price()Hey
Just wanted to add.
$sale_price = $product->get_sale_price();The get_sale_price method simply returns the value stored in the “sale price field” in the db (when sale price not available, it gets the stored value of the “regular price”)
Here is the original code of the get_sale_price method in woocommerce:
/** * Returns the product's sale price. * * @param string $context What the value is for. Valid values are view and edit. * @return string price */ public function get_sale_price( $context = 'view' ) { return $this->get_prop( 'sale_price', $context ); }It is just the stored value from the db. It does not get processed further.
That is why we have given you the snippet:$discount = apply_filters(‘advanced_woo_discount_rules_get_product_discount_price_from_custom_price’, $product->get_price(), $product, 1, $sale_price, ‘discounted_price’, true, true);This processes the value and gives your the discounted price.
As mentioned earlier, we do not store the sale price value to the DB because our plugin calculates the discount on the fly. (during run time). we use a set of woocommerce hooks to calculate and return the discounted price… get_sale_price method does not have any hook… so we use the pricing display hooks to calculate discounted price and display.
This was the reason why you are getting the stored value of the sale / regular price.
Since you are using the get_sale_price method (which does not have any hooks attached… so it returns the db stored value), the following snippet is required (only when you are using in custom scenarios like this..) to get the discounted price using our plugin rules.$discount = apply_filters(‘advanced_woo_discount_rules_get_product_discount_price_from_custom_price’, $product->get_price(), $product, 1, $sale_price, ‘discounted_price’, true, true); if($discount !== false){ $sale_price = $discount; }Hope this helps you understand further.
Thanks
Team FlycartForum: Plugins
In reply to: [Discount Rules for WooCommerce] Disable Title column on product page?Hey
Hope you were able to use the settings mentioned above.
Since we haven’t heard on this topic, let’s go ahead and close the thread.
Please feel free to open a ticket at our website if you need any further help in this regardThanks
Team Flycart