Does Tea Commerce have built-in support for the following functionality
Compare selected products? Recently viewed items? People who viewed this also viewed this? Auto email items when back in stock? Free delivery if customers spend over a certain amount?
Most of what you mention you have to handle with the standard Umbraco tools.
- Compare selected products? Will be two Umbraco nodes you can let the user compare against each other. That's pretty simple.
- Recently viewed items? You would have to do a little custom coding to do this. Somekind of Umbraco plugin that will store a the users recently viewed items in a cookie or something like that.
- People who viewed this also viewed this? Again, some custom plugin for Umbraco that keeps track of what products have been viewed. This one will be hard i think.
- Auto email items when back in stock? Maybe hook into the Umbraco Document.AfterPublish event and send mails to the ones who have signed up for an email
- Free delivery if customers spend over a certain amount? This one is standard Tea Commerce. You can set the amount on the individual shipping methods.
built-in support for the following functionality?
Does Tea Commerce have built-in support for the following functionality
Compare selected products?
Recently viewed items?
People who viewed this also viewed this?
Auto email items when back in stock?
Free delivery if customers spend over a certain amount?
Thanks for any support
Hi Sean,
Most of what you mention you have to handle with the standard Umbraco tools.
- Compare selected products?
Will be two Umbraco nodes you can let the user compare against each other. That's pretty simple.
- Recently viewed items?
You would have to do a little custom coding to do this. Somekind of Umbraco plugin that will store a the users recently viewed items in a cookie or something like that.
- People who viewed this also viewed this?
Again, some custom plugin for Umbraco that keeps track of what products have been viewed. This one will be hard i think.
- Auto email items when back in stock?
Maybe hook into the Umbraco Document.AfterPublish event and send mails to the ones who have signed up for an email
- Free delivery if customers spend over a certain amount?
This one is standard Tea Commerce. You can set the amount on the individual shipping methods.
/Rune
Thanks Rune, I thought there would be some custom coding to do. Good shout, on the Document.AfterPublish event.
I would assume custom coding would be needed to set free delivery for certain areas/postcodes in a country.
Better get my coding head on.
Free delivery for certain areas/postcodes in a country you will do with the Tea Commerce .NET API event hooks. Depends on when you need the data.
/Rune
is working on a reply...