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.
商品カテゴリー表示について質問があります。在庫切れの商品が表示されているので(問屋なのでこうなります)、商品詳細ページにドリルダウンする前に、在庫があるか確認できるように表示してほしいです。
カテゴリーページのどの部分を見たいかを添付してください:
アイデアの画像へのリンク: http://ipseitycore.co.uk/screen.jpg
リストテンプレート(catalog / product / list.phtml)で以下のコード行を試してください。
<?php $qty = (int)Mage::getModel('cataloginventory/stock_item')->loadByProduct($_product)->getQty(); echo $qty; ?>
お役に立てれば。