Search code examples
ruby-on-railsruby-on-rails-4comfortable-mexican-sofa

Comfy Mexican Sofa comfy_form_for remove form labels


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...


Solution

  • 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 %>