@mikegillihan
Active 5 months, 1 week ago
-
Mike Gillihan replied to the topic Hidden Groups and Forums not showing for members of them in the forum How-to & Troubleshooting 7 years, 9 months ago
Old thread, but here’s a possible fix that worked for me.
The hidden groups in the Groups list have the class “hidden” applied which is a fairly common CSS pattern for hiding content. I added a CSS override as a workaround.
#groups-list .hidden {
display: list-item !important;
visibility: visible;
}Really, in this case, I think BP…[Read more]