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.
我想从产品类别列表中删除价格。我精确搜索以删除指向参考模板文件 price.phtml 的链接;
我可以在哪些 xml 布局文件中准确找到它?
我不认为布局 XML 文件有那么大的选择性。编辑文件template/catalog/product/list.phtml并删除所有实例:
template/catalog/product/list.phtml
<?php echo $this->getPriceHtml($_product, true) ?>
或者,您可以使用 CSS 隐藏它,但如果这是您的意图,这不会从搜索引擎中隐藏它:
.category-products .price-box { display: none; }