在magento核心中添加代码片段
我正在运行 magento 1.4,并且尝试在 magento 商店的所有页面上显示覆盖横幅。我应该在哪个文件中添加横幅的代码片段,以便它显示在所有页面上? 顺便说一句:代码片段实际上是一些简短的 php if 函数 + OpenX Javascript 标签
I'm running magento 1.4 and I'm trying to display an overlayer banner on all the pages in my magento store. In which file should I add the code snippet for the banner so that the it gets displayed on all pages?
BTW: the code snippet is actually some a short php if function + an OpenX Javascript Tag
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自此 搜索:
/admin/cms_block/
并添加一个块。记住标识符。getLayout()->createBlock('cms/block')->setBlockId('identifier')->toHtml() ?>< /code>
就这样吧……
From this search:
/admin/cms_block/
and add a block. Remember the identifier.<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('identifier')->toHtml() ?>
There you go…
要在每个页面上包含 javascript,请查看 page.xml 布局
部分。对于 PHP 代码,请查看页面上包含哪些块,并在其中一个块之后(或之前)创建一个块For javascript to be included on every page have a look at page.xml layout
<default>
section. For PHP code see which blocks are included on the page and create a block after (or before) one of them