Codeigniter Cart Class - additional price for product options
- by JonP
Is it possible to add price values to product options in the Codeigniter Cart Class. For example: T-shirt price is $10.00, but the XXL size is an extra $2.00.
$data = array(
'id' => 'abc',
'qty' => 1,
'price' => 10.00,
'name' => 'T-Shirt',
'options' => array('Size' => 'XXL') // Where would you add $2.00 for XXL?
);
$this->cart->insert($data);