head.phtml 在 Magento 中的位置
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
转到 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 :)
我明白问题出在哪里了。我需要查看默认模板下的基本目录:
但我不太确定为什么。
I figured out what the problem was. I needed to look in the base directory under the default template:
I'm not exactly sure why though.
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.