Although I know that I can just download the Quote Item collection of options and filter its item_id, I just can’t plunge into the fact that Magento people haven’t added any method _afterLoador _loadOptions, to easily assign options to an element, since there are already properties _options, _optionsByCode...
to provide an example of what I'm doing:
$item = Mage::getModel('sales/quote_item')->load($itemId);
$buyRequest = $item->getBuyRequest();
I want to know if there is any method $item->loadOptions()... or another native way to load parameters into an element
UPDATE
What I want to do: I want to load an object of an object and use my own way of adding its parameters to this loaded object.
source
share