我在magento工作 我添加了一个产品并将其分配给几个类别。 我希望在我分配的主页和类别页面中看到这些产品。
我在list.phtml中有以下代码
<?php $_productCollection=$this->getLoadedProductCollection() ?>
<?php if(!$_productCollection->count()): ?>
<p class="note-msg"><?php echo $this->__('No Products Found in this Category') ?></p>
<?php endif: ?>
但这始终显示此类别中找不到产品
答案 0 :(得分:0)
为了能够回答这个问题,需要更多信息。
请你做以下事。
确保您添加的产品是:
一旦你加倍检查所有这些,请转到产品网址。我的意思是,打开产品,找到其“URL Key”值,然后使用该产品密钥导航到您的项目URL。即:
www.yourproject / testproducturlkey.html
或
www.yourproject / index.php的/ testproducturlkey.html
取决于您如何设置项目。您还可以在搜索栏中输入产品sku值,然后尝试找到类似的产品。如果您能够查看此产品,那么我们就可以进一步调试了。你能确认你能看到这个产品正确地在前端展示吗?