在magento核心中添加代码片段

发布于 2024-12-04 14:32:52 字数 137 浏览 1 评论 0原文

我正在运行 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 技术交流群。

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

发布评论

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

评论(2

秋千易 2024-12-11 14:32:52

来自 搜索:

  1. 转到 /admin/cms_block/ 并添加一个块。记住标识符。
  2. 在代码中添加 getLayout()->createBlock('cms/block')->setBlockId('identifier')->toHtml() ?>< /code>

就这样吧……

From this search:

  1. Go to /admin/cms_block/ and add a block. Remember the identifier.
  2. In your code add <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('identifier')->toHtml() ?>

There you go…

爱情眠于流年 2024-12-11 14:32:52

要在每个页面上包含 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

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