This is what I want to do:
- When I add a product to the cart, I catch the event
- In the associated observer, I want to add a data to the current quote item and save it.
- In the shopping cart, I get back this information in order to display it
This is what I do in the observer :
$item = $observer->getEvent()->getQuoteItem();
$item->setData('results',$results);
In the cart I’m trying to log this value like that :
Mage::log($_item->getData('results'));
But this value is empty. I think the “results” attribute is not persistent.
Can you help me to solve my problem ?
Please let me know if some more details are required.