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 商店中都有不同数量的相关产品。在打印价格和描述的类别页面上,我还想打印“查看所有 7 种颜色选项”之类的内容,7 是相关产品数量的动态值。
我已经想出了如何隔离可配置和关联的产品,但是在简单地获取计数并打印它时找不到任何东西。
在 list.phtml 中尝试这个,在产品的 foreach 迭代中
<?php $usedProductIds = $_product->getTypeInstance()->getUsedProductIds(); if(count($usedProductIds)>0) { echo "Number of products: " . count($usedProductIds); } ?>