I have read this document Guide: Hiding tags and added
However, the tag have not been hide… It’s still there
I have read this document Guide: Hiding tags and added
/*Don't use capital letter */
[data-rem-tags~="t-temp"]:not(:focus-within) .hierarchy-editor__tag-bar {
display: none;
}
The tag shouldn’t have the dash -
make sure that you use css codeblock
data-rem-tags~=“ttemp” - It won’t work with TTemp, you should use ttemp
[data-rem-tags~="ttemp"]:not(:focus-within) .hierarchy-editor__tag-bar {
display: none;
}