Question:
I want my customers to be able to purchase certain products based on the badges they have been assigned. I have categorised the products into ‘collections’ that represent the products they will be able to buy upon being assigned certain badges. I have gone through every way of working this and I think the best way is to use the Cart Validation Plugin to intercept the flow at the right place. But how?
Product:
I am using Wix Studio Editor and Velo. I have very limited knowledge of coding, this is the only feature that Wix doesn’t give my site ‘out of the box’ that is pretty essential to my business model.
What are you trying to achieve:
After completing online programs on my site, users earn badges that are manually assigned to them once I have checked their work. Once the badges are assigned, I want this to open up a new ‘collection’/category of products to be available to them.
Preferably, they are able to see all products but are unable to purchase the ones they have not ‘earned’. This way, they should be notified that they are yet to earn the badge that allows them to purchase that product, or products from that ‘collection’ until they have got the badge.
What have you already tried:
I tried creating my own ‘add to cart’ button, but that would mean rebuilding Wix’s existing Product Gallery and storefront, which I think would result in a lot of work when I feel like the solution could be a lot easier.
I tried using member pages but that would mean you were unable to see any products that you were currently unable to purchase AND from a user experience point of view, would mean there was nowhere to view all the products that you are eligible for, which is terrible for sales.
I have also created a CMS table that associates the badges to the collections that should be made available using referencing, and called it ‘achievements’. However, I think I may need to create an ‘object’ or ‘array’ field that actually associated the IDs of the badges and collections in question in one cell, rather than across multiple columns in one table.
Additional information:
The logic needs to look something like this:
When user
- clicks ‘add to cart’
- tries to checkout
- Check if they’re logged in, if not, request log in
- List the user badges
- List the collections that the products in cart/selected are assigned to
- Check if the user has all the badges required for all the collections mentioned then proceed (I am not sure how to get the badges-collections relationship to work, this is where I think I may need an ‘object/array’ field somewhere)
- If not, lightboxed or redirected to information about which badge(s) they need to gain to be able to purchase the products. (this is not MVP, just an error message is fine)
I am very new to coding so am unsure how to proceed with this! I managed to install the Cart Validation Plugin and have access to the files. I understand how to use them for out of the box stuff but this seems a little more complicated, if at all possible.
I’m wondering if the ‘check user badge against collection of product’ logic needs to go somewhere else? Any help would be appreciated!