Im new to umbraco and ucommerce, but i think that ucommerce can do the trick for me.
I want a webshop where the customer can buy membership to the website. If the customer adds the product "membership" to the basket and go to checkout i want a page where the customer can add information so the membership can be created. Ex date of birth etc. But this page should only show if the customer have added the product "membership", and not if it is "normal" products. Can anyone please help me how to do this? i have been searching for a while now.. Is it the pipelines i need to change?
var nextStep = "url from umbraco node for the next checkout step";
if (basket.OrderLines.Any(x => Product.FirstOrDefault(y => y.Sku == x.Sku).ProductDefinition.Name == "membershipdefinitionName"))
{
nextStep = "alternative url for membership information entry";
}
So you make a "optional" checkout step, and the content of the basket defines the next step in the checkout flow.
I have never tried to make a website with ucommerce.. Where should i put this code? how do i make the checkout?
The url's you are refering to, where do i get the url to "the next checkout step" and "alternative url for membership information entry"? is it normal pages i should use as checkout?
ucommerce add a step in checkout
Hi,
Im new to umbraco and ucommerce, but i think that ucommerce can do the trick for me.
I want a webshop where the customer can buy membership to the website. If the customer adds the product "membership" to the basket and go to checkout i want a page where the customer can add information so the membership can be created. Ex date of birth etc. But this page should only show if the customer have added the product "membership", and not if it is "normal" products. Can anyone please help me how to do this? i have been searching for a while now.. Is it the pipelines i need to change?
I would do it like this:
So you make a "optional" checkout step, and the content of the basket defines the next step in the checkout flow.
I hope this helps
I have never tried to make a website with ucommerce.. Where should i put this code? how do i make the checkout?
The url's you are refering to, where do i get the url to "the next checkout step" and "alternative url for membership information entry"? is it normal pages i should use as checkout?
Yes, its normal pages you use for the checkout.
I make a "Checkout" content section like this:
Checkout
This will return the next step in the checkout flow (in my example the Addressinformation node).
is working on a reply...