Magento 商店 - 将 nofollow 添加到分层导航

发布于 2024-08-17 18:00:32 字数 41 浏览 9 评论 0原文

我应该查找哪个文件来将 nofollow 标签添加到我的分层导航中?

Which file would I look in to add nofollow tags to my layered navigation?

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

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

发布评论

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

评论(3

萌酱 2024-08-24 18:00:32

找到它:

/app/design/frontend/default/YOURTEMPLATENAME/template/catalog/layer

Found it:

/app/design/frontend/default/YOURTEMPLATENAME/template/catalog/layer

寄与心 2024-08-24 18:00:32

是的,像 magento 1.4*,pp/design/frontend/default/base/YOURTEMPLATENAME/template/catalog/layer
修改filter.phtml,state.phtml以添加noflow标签。那是!

Yes,like magento 1.4*,pp/design/frontend/default/base/YOURTEMPLATENAME/template/catalog/layer
modify the filter.phtml,state.phtml to add nofllow tags. That is!

公布 2024-08-24 18:00:32

打开或创建 app/design/frontend///layout/local.xml 并添加以下 XML 信息:

<catalog_category_layered>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered>
<catalog_category_layered_nochildren>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered_nochildren>

这会将 NOFOLLOW 设置为头部的元标记机器人的分层导航页面。

open or create app/design/frontend/<package>/<theme>/layout/local.xml and add the following XML information:

<catalog_category_layered>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered>
<catalog_category_layered_nochildren>
    <reference name="head">
        <action method="setRobots"><meta>NOFOLLOW</meta></action>
    </reference>
</catalog_category_layered_nochildren>

This will set NOFOLLOW to your meta tag robots in the head of the layered navigation page.

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