November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Carts are unique per market, customer and name. Seeing as the customer is a part of that, I don't see too much risk with just letting the customers name of their wishlist be used as the cart name. Make sure you don't allow them to create cart names that you have reserved, f.ex. "Default" :P. And then when you list wishlists, you just query carts from that customer where the name isn't in the reserved list of names (i.e. "Default").
A customer can have multiple carts in a market, as long as they have different names. However this is where things get tricky. A lot of code in Commerce assumes that you have only one wishlist, and that's default to "WishList". One of the examples is the "Abandoned cart removal job", which only allows you to specify one cart name to be excluded. So if you have WishList and BuyingList for example, BuyingList will likely be deleted when you run the job.
Luckily enough, that's a quite simple job. I'd still go with this route and instead build a custom scheduled job that takes this into account. Other options is either looking at completely different way of storage, which I believe to be a tougher job, or have the one wishlist, but add metafields to lineitems telling which wishlist they belong to. Depending on how big all your wish lists are together, that might be a performance issue. Then again, loading several carts (wish lists) isn't very fast either, unless you use ISerializableCart.
What requirements do the customer have?
My initial aim would be to keep everything in the same Cart/OrderGroup named "WishList" and divide the contents into different OrderForms to give the illusion of seperate wishlists.
That is how i would want to store it, then build custom on top of that to fulfill the customer's wishes about how it should be displayed on the site.
Then you would have to load all the wish lists at the same time though. But yeah, there are several approaches, they come with different pros and cons I suppose :)
The requirement is to have multiple wish lists with one listing page where only the names of the wish lists would be displayed as links. When visitor clicks on the wish list name it would take him to the wish list page with only items present in that specific list. Every product should have a drop down menu with all the possible custom lists created so far so that product could be placed or removed in or from many lists by toggling the check box next to the wish list name.
I will check both approaches to see what are the cons and pros :)
I am trying to implement multiple wish lists for a customer according to this example. It seems it's possible but in such a way that all instances of ICart must have "WishList" as a common name.
Is there a clean way of attaching arbitrary name to the wish list so that wish list is attached to the customer only by customers ID or is there any other way to name wish lists as customer wants them to be named?