#meldin-checkout-product
1 messages ยท Page 1 of 1 (latest)
meldin-checkout-product
@oblique jewel I think we spoke about this in the past, but no this is impossible. We don't support any kind of "product version choice"
No we didnt. I am sorry I dont think you understand my question
price_data: {
currency: "usd",
product_data: {
name: product?.name,
images: [newImage],
description: item?.color,
},
I do understand
this is your for that thread right? that's when we talked about the product versions and colors and all of that
I just want to make sure I can explain how to approach this and if your ask is related to that
yes that was me but I get that Now the qusetion is different ๐
price_data: {
currency: "usd",
product_data: {
name: product?.name,
images: [newImage],
description: item?.color,
},
you see in the desription I have item.color so when the user go to checkout page he will see product name, image, and the color
I also have item.description and it should be there insted of item.color so for example : price_data: {
currency: "usd",
product_data: {
name: product?.name,
images: [newImage],
description: item?.description,
},
So is there any other property which I can use under the desription for example attributes: item.color
?
So when user go to checkout page he will see product name, image. description and color
Ooo Ok Thank you very much I appreciate your help
I can't think of an alternative right now than have separate products, one for each color and then asking the customer which color they buy and then add the right version of that product
I understand that and I fix that. For example if you add speacers blue and speakers red, on the checkout you are goint to see prouduct name which is speakers, image and color blue as a desription, Under that you are going to see another speaker with the image and color red
gotcha