7 製品ページで顧客が選択したカスタムオプションのみを取得したい。私が1ページのページにいる間、私はquoteオブジェクトを持っています。 $items = $quote->getAllItems(); foreach ($items as $item) { //getting selected custom options } custom-options — タリク・アジズ ソース
20 これは、カートページでオプションを取得する方法です。それもあなたのために働くはずです: $helper = Mage::helper('catalog/product_configuration'); $items = $quote->getAllItems(); foreach ($items as $item) { $options = $helper->getCustomOptions($item); //do something with $options. } — マリウス ソース いつものようにライフセーバー。 — エリアス2015