There is the following foreach loop on the cart page:
foreach($this->getItems() as $_item) { }
I need to get product parameters for these elements, I tried several methods, but I can not get the desired results.
I tried:
foreach($this->getItems() as $_item) { print_r($_item->getProductOptions()); }
and
foreach($this->getItems() as $_item) { print_r($_item->getOptionList()); }
Are there any other features that I could use?
source share