按照教程建议,我已成功从其他页面中删除了body_content_title。但是,在博客主页上我似乎无法让标题消失。我已根据常见问题解答尝试将:body_content_title设置为null,但这似乎不起作用。
<% content_for :body_content_title => ""%>
查看index.html.erb视图,标题信息似乎包含在
行中<% content_for :body_content_left do %>
但我似乎无法找到输入/呈现body_content_left信息的位置。任何帮助清除这一点将不胜感激!
感谢您阅读本文, DC
答案 0 :(得分:8)
我已经被困在这里几个小时了,我想出了如何解决它。
我正在使用refinery-blog Version 2.0.4
我做的是覆盖索引文件:
rake refinery:override view=refinery/blog/posts/index
然后用:
替换第19行(<%= render :partial => "/refinery/content_page" %>
)
<%= render :partial => "/refinery/content_page", :locals => { :remove_automatic_sections => true } %>
您也可以用以下内容替换同一行:
<%= render '/refinery/content_page', :hide_sections => :body_content_title %>
两种写同样东西的方法,但我猜第二种方法更清洁。