Hi Guys , is it possible to hide a field label in...
# avo-2
s
Hi Guys , is it possible to hide a field label in the edit/show view ? See example below. I am willing to invest some time on a PR if someone is kind to point me to the right direction 🙂 Cheers Moe
l
There isn't a way of doing that at the moment
actually
there could be a way
you could target it with CSS
just a sec
Copy code
css
[data-resource-edit-view-value="edit"][data-selected-resources-name="projects"] [data-field-id="meta"]>div:first-child{
  display: none;
}
this selector and rule will work for this URL
you need to tweak the resource name and field id
s
thanks , I will try it