如何在magento中创建新的站点导航

发布于 2024-10-14 18:44:38 字数 152 浏览 3 评论 0原文

我只是想知道是否有人可以向我展示在 magento 中创建新站点导航的方法, 我真的迷路了,

我需要制作一个网站导航,如主页、关于我们、品牌等,它位于标题部分,我知道我应该在 page.xml 中使用块,但我只是不知道如何一切都在一起。

任何帮助将不胜感激,

I'm just wondering if someone can show me the way of creating a new site navigation in magento,
I'm really lost,

I need to make a site navigation like Home, About us ,Brands and so on, it is in the header section, I know I should use block in page.xml but I just can't figure out how everything goes together.

any help would be appreciated,

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

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

发布评论

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

评论(1

秋风の叶未落 2024-10-21 18:44:38

您可以通过访问位于... /app/design/frontend/default/your_theme/template/page/html/ ... 的 html 文件夹并编辑 header.phtml 文件来完成此操作。

我喜欢向标题添加链接的另一种方法是在管理面板中创建一个静态块,然后使用以下行在 header.phtml 文件中引用它:

getLayout()->createBlock('cms/block')-> ;setBlockId('id_of_the_block_you_created')->toHtml(); ?>

这样,如果链接需要更改,可以通过管理面板来完成。

you can get this done by going through to the html folder found at... /app/design/frontend/default/your_theme/template/page/html/ ... and edit the header.phtml file.

another way that i like to add links to the header is creating a static block in the admin panel then referencing it in the header.phtml file using the following line:

getLayout()->createBlock('cms/block')->setBlockId('id_of_the_block_you_created')->toHtml(); ?>

this way if the links need changing it can be done through the admin panel.

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