Magento - 删除“price.phtml”从产品类别列表中

发布于 2024-10-08 22:42:44 字数 81 浏览 2 评论 0原文

我想从产品类别列表中删除价格。我精确搜索删除了参考模板文件price.phtml的链接;

我可以在哪些 xml 布局文件中准确找到它?

I want to remove the prices from the category list of products. I search exactly to remove the link to the reference template file price.phtml;

In which xml layout files can I find it exactly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满身野味 2024-10-15 22:42:44

我认为布局 XML 文件没有那么有选择性。编辑文件 template/catalog/product/list.phtml 并删除此文件的所有实例:

<?php echo $this->getPriceHtml($_product, true) ?>

或者,您可以使用 CSS 隐藏它,但如果您有意这样做,这不会将其隐藏在搜索引擎中:

.category-products .price-box { display: none; }

I don't think a layout XML file can be that selective. Edit the file template/catalog/product/list.phtml and remove all instances of this:

<?php echo $this->getPriceHtml($_product, true) ?>

Alternatively you could hide it with CSS, but this wouldn't hide it from search engines if that's your intention:

.category-products .price-box { display: none; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文