将 AW 博客链接添加到 Magento 顶部菜单

发布于 2024-09-15 10:10:06 字数 85 浏览 5 评论 0原文

使用 Magento 1.4 博客插件“AW Blog”,如何使其创建的“新闻”链接出现在 Magento 的顶部菜单中(而不是默认情况下的顶部链接菜单)?

Using the Magento 1.4 blog plug-in "AW Blog", how is it possible to get the "News" link it creates to appear in Magento's top menu (as opposed to the top links menu which it does by default)?

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

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

发布评论

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

评论(2

伴我心暖 2024-09-22 10:10:06

将 AW Blog 'Route to Blog' 配置从 'news' 更改为 'blog' 后,将其添加到 top.phtml :

  <div class="nav-container">       
    <ul id="nav">
    <?php echo $_menu ?>
      <li><a href="<?php echo $this->getUrl('blog')?>"><?php echo $this->__('Blog') ?></a></li>
    </ul>

可能不是最优雅的解决方案,因为我不希望 Blog 在菜单末尾,所以如果有那里有更好的解决方案...

After changing AW Blog 'Route to Blog' configuration from 'news' to 'blog', add this to top.phtml :

  <div class="nav-container">       
    <ul id="nav">
    <?php echo $_menu ?>
      <li><a href="<?php echo $this->getUrl('blog')?>"><?php echo $this->__('Blog') ?></a></li>
    </ul>

Probably no the most elegant solution as I didn't want Blog at the end of the menu, so if there's a better solution out there...

不必了 2024-09-22 10:10:06

我还没有尝试过,但这个扩展似乎允许向菜单添加任意链接。
http://www.magentocommerce.com/extension/657/navigation-bar-administrator

I haven't tried it but this extension seems to allow adding an arbitrary link to the menu.
http://www.magentocommerce.com/extension/657/navigation-bar-administrator

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