Request:
Allow users to select multiple products from our website and allow each product to have a customization (freeopt).
Example: Customer selects 3 of the same product and each of the products can have an engraving on them which the engraving text is sent with the freeopt param.
The issue I am running into when doing this is that when the customer selects 3 of the same product (same SKU number) and does different engraving on each of the products (Requested by the client) I have to create a string similar to the following.
- Code: Select all
order.cgi?storeid=*16d7c8204c1420ca07c7fb49f0&dbname=products&function=add&sku=100044&100044:qnty=1&100044:freeopt=test1&sku=100044&100044:qnty=1&100044:freeopt=test3&sku=100044&100044:qnty=1&100044:freeopt=test2
But when the cart sees it I receive the following error message: Please specify a valid value for the Quantity
I have so far determined that the issue lies in that I am passing the same sku number in multiple times with the exact same quantity count. The issue I have is that is exactly how the client wants it to work.
Any help with this would be great.
Thanks in advance.