XF 2.2 Notices, if not

Robert9

Well-known member
Licensed customer
May someone has an idea how to show a notice everywhere, but not on forum_list?
I guess we miss a way to say:

show it everywhere, but not on x.

Is there something like this?
 
Yes, and so i have the question:
How can i show one notice on all pages, but not on forum_list?
With a display:none for example.
But why there is no other option for something like that?
 
Have it apply everywhere, then add css to hide it on the forum list

CSS:
[data-template="forum_list"] .extra-class-for-notice {
    display: none;
}
 
Back
Top Bottom