I’d like to be able to add a few explanatory/welcome topics to a support category that do not have the “Me too” button on them. Also the “About this category” should not have a “Me too” button and I see it is not shown, which is great! Is there some markdown magic or admin action to suppress it on a specific topic?
3 Likes
I always thought it would be valuable that body have dynamic CSS style for each topic, as is the case with groups and specific pages.
1 Like
What if you hide it when a (hidden) tag is present?
body.tag-<YOUR-TAG> .post-action-menu__solved-shared-issue {
display: none;
}
2 Likes
Thanks much! That works. The tag has to be visible to the user so had to make up one that makes sense.
I was thinking about this a little more and there’s a couple other options:
- If this really is few and far between, you could designate the topics themselves in CSS
- You could hide the tag via CSS as well if you didn’t want it visible to users
- You could build a custom theme component that detects a hidden trigger in the body of your message, like
<!-- Hide Me-too -->
1 Like