I was stuck with this for several hours, and I figured out how to solve it.
I am using refinery-blog Version 2.0.4
and what I did redefined the index file:
rake refinery:override view=refinery/blog/posts/index
then replaced line 19 ( <%= render :partial => "/refinery/content_page" %>
) with:
<%= render :partial => "/refinery/content_page", :locals => { :remove_automatic_sections => true } %>
You can also replace the same line:
<%= render '/refinery/content_page', :hide_sections => :body_content_title %>
there are two ways to write the same thing, but I think the second is cleaner.
source share