I have a situation:
I have products that are in a CodeIgniter Cart custom store. Each product has an ID associated with it, but also has options for it (sizes). These sizes all have different prices. (We're talking about photos being sold at different print sizes).
Because CI Cart updates, adds and deletes based on the product ID inserted, I am not able to insert one product with 2 different sizes.
As of now, the only solution I can think of is to pass the ID to the cart as IMAGEID_OPTIONID
so that it contains both IDs.
However, I thought there might be an easier, more uniform way of doing this? Or a better solution than an ID that isn't (on it's own) associated with anything specific unless i explode it..?