https://avo.cool logo
heyho, quick question: can a `visible`
# general
m
heyho, quick question: can a
visible
option be set for a whole
group
in the menu editor somehow?
l
> ah, it seems to be invisible if all items in it are invisible. I think that'll work Exactly!
with_options
helper can be handy, I think this field example can be also applied inside the menu editor
Copy code
ruby
    with_options visible: -> { false } do
      field :first_name, placeholder: "John"
      field :last_name, placeholder: "Doe", filterable: true
    end
m
awesome, thanks!