如何在magento中创建新的站点导航
我只是想知道是否有人可以向我展示在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过访问位于... /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.