0

我通过在产品名称旁边添加制造商名称来使用 list.phtml 修改了我的 magento 目录页面。现在,这适用于所有将“锚”设置为“否”的类别。它不会显示“锚”设置为“是”的类别的变化。你能帮我解决这个问题吗?

谢谢。

4

2 回答 2

1

锚和非锚类别的布局在这里有所不同:

<catalog_category_default> 

<catalog_category_layered> 

在 catalog.xml 也许你的模板只使用非锚 list.phtml 并回退到锚类别的基本/默认?

于 2012-12-28T16:16:17.923 回答
0

在 list.phtml 我添加了制造商

<?php echo $_helper->productAttribute($_product, $_product->getAttributeText('manufacturer'),'name') ?> - <?php echo $_helper->productAttribute($_product, $_product->getName() , 'name'); ?></a>
于 2012-12-29T15:04:52.283 回答