Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カートに Magento の公称 (isRecurring) アイテムが含まれているかどうかを確認する方法。
1 つの関数 isRecurring を見つけましたが、カートでこの関数を使用する方法がわかりません。カート内の公称アイテムを確認するための他のコード(関数)を知っている人はいますか?
前もって感謝します
私の場合にうまくいった答えを見つけました
$cart = Mage::getSingleton('checkout/cart'); $items = $cart->getItems(); foreach ($items as $item) { if($item->getProduct()->getIsRecurring()){ your code............. } }
これが誰かを助けることを願っています