Hi,I want to implement an order discount with a fixed dollar amount, like $5, $10, etc. But the setup screen you can only set a percentage discount. Tried other ways (category discount, product cou...
Hi,I have implemented a custom order discount service that applies a custom discount to an order. I have overridden IOrderDiscountSource and it is working as intended.Documented here: https://docs....
Kentico 11.0.34 version. In the Product Coupons app, the default setting for "Apply lower priority discounts" is true/yes. Business logic stipulates that this should be set to false/no except in ex...
I have the following code snippet:// Creates a new order object and sets its properties OrderInfo newOrder = new OrderInfo { OrderInvoiceNumber = StringUltils.RandomString(15, false), Order...
I have created a Order discount config with condition: Order is one of the first 1 order(s) the registered customer has placed.How can i get this config and show it in product detail page?
I read the documentation about display discount price in Kentico: https://docs.kentico.com/k12/e-commerce-features/managing-on-line-stores/discounts/working-with-catalog-discounts/displaying-catalo...
We have various product discounts including ones for a specific user role. Say, we have Product A which is $50. It has a discount of 20% for all site users and a 40% discount for users in a specifi...
Could you tell me please, how to get SKU price with discounts for a specified user?I work with Kentico from console application through C# API.CMS.DataEngine.CMSApplication.Init(); var sku = SKUI...
I know in Kentico 7 we can apply discounts to a particular product, number of specific products, and to customer levels. But what about for the total amount in the cart upon checkout? Say over 100...
I have a volume discount on a product and a coupon code. It seems the coupon code is getting applied before the product volume discount. In other words, this product is $5.50. If you buy 4 or more,...