Does anyone know how to remove form labels? I have tried:
<%= comfy_form_for @comment, :as => :comment, options: {label: false}, :url => comfy_blog_comments_path(@cms_site.path, @blog.path, @post.slug) do |form| %>
also
<%= comfy_form_for @comment, :as => :comment, default: {label: false}, :url => comfy_blog_comments_path(@cms_site.path, @blog.path, @post.slug) do |form| %>
and also
<%= form.text_field :email, label: false, :class => 'form-control' %>
all to no avail...
ComfortableMexicanSofa is using https://github.com/bootstrap-ruby/rails-bootstrap-forms
So I think you need to do this:
<%= f.text_area :email, hide_label: true %>