Magento - 在所有页面中创建固定块

发布于 2024-10-07 09:39:26 字数 58 浏览 1 评论 0原文

如何在不点击模块名称的情况下在包括主页在内的所有页面中可见的右列中创建一个块?

谢谢。

how can I create a block in the right column visible in all pages including the homepage without taping the module name?

Thank you.

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

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-10-14 09:39:26

希望能很好地理解你的问题...

1)创建一个模块(例如 Mynamespace/Mymodule)

2)在模块中创建一个块(例如 Mynamespace/Mymodule/Block/Myblock)

3)为该块创建一个 phtml 文件(YOURTHEMEDIR/template/mymodule/myblock.phtml)

4) 编辑模块“Mymodule”的 config.xml,以便它将加载布局更新文件 (YOURTHEMEDIR/layout/mymodule.xml):

<frontend>
...
<layout>
    <updates>
    <mymodule>
        <file>mymodule.xml</file>
    </mymodule>
    </updates>
</layout>
...
</frontend>

5) 在 mymodule.xml 中放置像这样的东西:

<?xml version="1.0"?>
<frontend>
    <layout>
        <default>
            <reference name="right">  <!-- this is the name of the right column block -->
                <block type="mymodule/myblock" name="myblock" template="mymodule/myblock.phtml" /> 
            </reference>
        </default>
    </layout>
</frontend>

Hoping to have understood well your question...

1) Create a module (for example Mynamespace/Mymodule)

2) Create a block in your module (for example Mynamespace/Mymodule/Block/Myblock)

3) Create a phtml file for that block (YOURTHEMEDIR/template/mymodule/myblock.phtml)

4) Edit config.xml of the module "Mymodule" so that it will load a layout update file (YOURTHEMEDIR/layout/mymodule.xml):

<frontend>
...
<layout>
    <updates>
    <mymodule>
        <file>mymodule.xml</file>
    </mymodule>
    </updates>
</layout>
...
</frontend>

5) Inside your mymodule.xml put something like this:

<?xml version="1.0"?>
<frontend>
    <layout>
        <default>
            <reference name="right">  <!-- this is the name of the right column block -->
                <block type="mymodule/myblock" name="myblock" template="mymodule/myblock.phtml" /> 
            </reference>
        </default>
    </layout>
</frontend>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文