XF 2.1 How to make it show all threads even by someone that's ignored?

HJW

Active member
I want to ignore the ignore functionality when viewing lists of threads in forums, tags and elsewhere. Is this possible?

I have lots of long running threads and everyone wants to see the thread even if it's started by someone they've ignored.
 
Solution
Disappointing not to see a solution here, is was super simple.

Just add this to Style templates extra.less:

Code:
div .is-ignored.structItem--thread {
    display: table !important;
    background-color: #efefef;
}

(adjust or remove color as pleased to make it stand out)
Disappointing not to see a solution here, is was super simple.

Just add this to Style templates extra.less:

Code:
div .is-ignored.structItem--thread {
    display: table !important;
    background-color: #efefef;
}

(adjust or remove color as pleased to make it stand out)
 
Solution
Top Bottom