So when adding the bundle - it adds the corresponding products to the cart that are assigned to that bundle.
Secondly - is it possible to add a "Special bundle price" to encourage customers to buy bundles?
Oooh, interesting idea. I've not done it myself before, but the best approach I could think to use would be a discount rule.
A couple of options that might work would be a product rule for the parent product, or maybe a property rule which looks for some indicator that it's a bundle (not sure it could check the bundle property as I don't think it's stored in the properties collection, but you could set a flag property manually or in an event handler). You could then apply a discount to the total for bundling products.
Setup Bundle products with special price
So when adding the bundle - it adds the corresponding products to the cart that are assigned to that bundle. Secondly - is it possible to add a "Special bundle price" to encourage customers to buy bundles?
Hey Vineeth,
Oooh, interesting idea. I've not done it myself before, but the best approach I could think to use would be a discount rule.
A couple of options that might work would be a product rule for the parent product, or maybe a property rule which looks for some indicator that it's a bundle (not sure it could check the bundle property as I don't think it's stored in the properties collection, but you could set a flag property manually or in an event handler). You could then apply a discount to the total for bundling products.
If neither of the above work, you can also create your own Rules too. It's not very well documented unfortunately, but you can see the source code to the built in rules here https://github.com/TeaCommerce/Tea-Commerce-for-Umbraco/tree/master/Source/TeaCommerce.Umbraco.Application/Marketing/Rules so hopefully this at least gives you some direction.
Another option, if the discount rules doesn't seem right, you could implement a
ProductCalculator
and see if that could work to change the product price depending on whether it is bundled or not? (maybe store 2 prices on the product and choose which one to use depending on if it's bundled or not?) https://deploy-preview-15--vibrant-easley-e6f6f9.netlify.com/3.3.1/api/extending-tea-commerce/#product-calculatorHope these help
Yeah sounds great. I will look into these options and will get back to you if furthermore help needed :) Thank you Matt,
is working on a reply...