Topic: Way to hide tag catagories?

Posted under Tag/Wiki Projects and Questions

Asking if there's a way to hide tag lists. I know that you can minimize them on a post, but they're all presented again if you change to another. I only want to see tags that are a part of the TWYS system, not things like meta tags or lore tags, ect.

bitWolfy

Former Staff

somerandomvoir said:
No idea what that means, plain and honest.

It's a custom CSS style that hides the "meta" tag category in the sidebar.

Go to Settings -> Advanced tab.
Paste that code into the "Custom CSS style" field, then click "Submit".

If you want to hide the lore tags as well, use this instead:

h2.meta-tag-list-header, ul.meta-tag-list,
h2.lore-tag-list-header, ul.lore-tag-list {
  display: none;
}

This one hides it but shows it when you hover over it:

h2.meta-tag-list-header::before, h2.lore-tag-list-header::before {
  content: "(Hover to show) ";
}
ul.meta-tag-list, ul.lore-tag-list {
  padding: 20px 0 20px 0;
  opacity: 0;
  transition: opacity 250ms;
  transition-delay: 100ms;
}
ul.meta-tag-list:hover, ul.lore-tag-list:hover {
  opacity: 1;
  transition: opacity 500ms;
  transition-delay: 750ms;
}

Updated

This one hides the categories by default but still lets you click on the header to show them:

ul.meta-tag-list, ul.lore-tag-list {
  display: none !important;
}

ul.meta-tag-list[style*="display: block"], ul.lore-tag-list[style*="display: block"] {
  display: block !important;
}
  • 1