I am using the SimpleCart Javascript Library.
I want to add an id
to each product and when the user proceeds to checkout,
these id
's would be sent as well.
Instead of these columns, for example:
Name Price
book 5$
I want to have a Product Id
column include as well:
Id Name Price
3 book 5$
I've tried inserting the id
into the options, but I had no luck doing so.
Can someone show me a detailed example doing so?