Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
David N. Posted November 22, 2023 Posted November 22, 2023 When I'm looking at the list of topics inside a forum, can I choose to hide the tags? I searched the ACP but couldn't find it.Â
Marc Posted November 22, 2023 Posted November 22, 2023 There is no way in which to hide tags using settings, no. This would require customisation David N. 1
David N. Posted November 22, 2023 Author Posted November 22, 2023 Ok thank you, I suppose it shouldn't be too hard to hide them with the right CSS selector, I just have to find the right one. 🙂Â
David N. Posted November 22, 2023 Author Posted November 22, 2023 Ok I tried this and it seems to be working! 🙂 body[data-pageapp="forums"][data-pagemodule="forums"][data-pagecontroller="forums"] .ipsTag { display:none; }
Solution David N. Posted November 24, 2023 Author Solution Posted November 24, 2023 So it tuns out that this previous code would still display "3 more" for example for posts having more tags that couldn't be displayed. This is the better CSS selector to hide the entire list of tags: /* Hide tags on topic list */ body[data-pageapp="forums"][data-pagemodule="forums"][data-pagecontroller="forums"] ul.ipsTags { display:none; } Joel R 1
Recommended Posts