head.phtml 在 Magento 中的位置

发布于 2024-09-26 21:19:07 字数 327 浏览 4 评论 0原文

我正在使用 Magento,需要删除默认包含在 部分中的 Javascript。

我正在使用一个名为“现代”的修改后的主题。我正在寻找 head.phtml:

app/design/frontend/default/modern/template/page/html/head.phtml

它不存在。我有 header.phtml 和 footer.phtml。 header.phtml 中的代码在文档的 之后开始。

head.phtml 文件在哪里?

提前致谢。

I am working with Magento and need to remove a Javascript that is being included in the <head> section by default.

I am using a modified theme called modern. I am looking for head.phtml in:

app/design/frontend/default/modern/template/page/html/head.phtml

It does not exist. I do have header.phtml and footer.phtml. The code from header.phtml starts well after the <body> of the document.

Where in the world would the head.phtml file be?

Thanks in advance.

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

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

发布评论

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

评论(3

烟凡古楼 2024-10-03 21:19:07

转到 Magento 中的核心主题文件:
app/design/frontend/base/default/template/page/html/head.phtml

从 Base 复制此文件并将其粘贴到您的主题,即

app/design/frontend/default /modern/template/page/html/head.phtml

现在根据您的要求在此处进行更改。

要删除 Javascript,请转到其 XML 文件,即 page.xml

享受 :)

Goto Core theme files in Magento :
app/design/frontend/base/default/template/page/html/head.phtml

copy this file from Base and Paste it to you theme, that is

app/design/frontend/default/modern/template/page/html/head.phtml

Now change here as per your requirement.

To Remove Javascripts goto its XML file i.e. page.xml.

Enjoy :)

会傲 2024-10-03 21:19:07

我明白问题出在哪里了。我需要查看默认模板下的基本目录:

app/design/frontend/base/default/template/page/html

但我不太确定为什么。

I figured out what the problem was. I needed to look in the base directory under the default template:

app/design/frontend/base/default/template/page/html

I'm not exactly sure why though.

伏妖词 2024-10-03 21:19:07

FWIW,通常应该通过注释/删除主题中 /layouts 文件中的相关行来删除 JS,而不是头模板文件本身。当然,除非有人手动添加这些脚本行(顽皮的代码猴子)。

FWIW, JS should usually be removed by commenting/deleting relevant lines from the /layouts files in your theme, not the head template file itself. Unless someone added those script lines manually (naughty code monkey), of course.

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