1
将自定义属性添加到产品列表
我对我的catalog / product / list.phtml文件中的一个小问题感到非常困惑。 我试图将Magento随附的Manufacturer属性添加到我的网格列表中,并添加了以下代码。 <?php echo $_product->getAttributeText('manufacturer') ?> <?php if( $_product->getAttributeText('manufacturer') ): ?> <p class="manufacturer">Manufactured by:<br/><?php echo $_product->getAttributeText('manufacturer')?></p> <?php endif; ?> 现在,这与我在product / view.phtml页面上使用的代码相同,并且可以在此处使用。但这根本不起作用,无论是通过自身进行回显还是在if语句中使用它都无法实现。两者都不返回。 因此,我必须做一些特殊的事情才能在list.phtml文件中获取这些属性?