向 Spree 添加菜单项

发布于 2024-11-25 13:56:58 字数 335 浏览 3 评论 0 原文

我创建了一个 spree 网站,并使用 spree_essentials 和 spree_essentials 博客向我的网站添加了一个博客。如何从主导航添加博客链接?

我创建了一个名为“主题”的自定义扩展。它将这个文件夹放入我的主项目文件夹中,而不是放入供应商/扩展中,不确定这是否重要。

对 Rails 和 Spree 来说还很陌生。

这是我使用的扩展的链接:https://github.com/citrus/spree_essential_blog

I've created a spree site and using spree_essentials and spree_essentials blog have added a blog to my site. How can I add a link to the blog from my main navigation?

I've created an extension for customization called Theme. It placed this folder into my main project folder rather than in to vendor/extensions not sure if that matters or not.

Pretty new to rails and Spree.

Here's the link for the extensions I used: https://github.com/citrus/spree_essential_blog

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

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

发布评论

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

评论(1

我们的影子 2024-12-02 13:56:58

要执行您想要的操作,请在 lib/your_extension_hooks.rb 中添加一个钩子,如下所示:

insert_after : sidebar do
    # you can add a partial too ^^ 
    %(<label>test</label>)
end

您可以找到所有可用的钩子 此处

To do what you want add a hook inside lib/your_extension_hooks.rb, something like this :

insert_after : sidebar do
    # you can add a partial too ^^ 
    %(<label>test</label>)
end

You can find all available hook here.

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