Quote:
Originally Posted by BirdOPrey5
However to specify just forums to exclude is an easy change.
In the TWO plugins, All Topic Forumdisplay Thread Count and All Topic Forumdisplay Threadid change the line:
PHP Code:
$hook_query_where = "*/ WHERE forumid IN ($alltopics) AND sticky = 0 $prefix_filter $visiblethreads $globalignore $limitothers $datecut";
to
PHP Code:
$hook_query_where = "*/ WHERE forumid NOT IN ($alltopics) AND sticky = 0 $prefix_filter $visiblethreads $globalignore $limitothers $datecut";
Basically adding the word "NOT" to the code.
|
I just tried to modify mod to enable both including and excluding type of master forums, but I found out the main problem at the moment is in this code. For some reason, when I have this NOT added, every forum becomes Master forum showing all threads. Not only specified, but every.
Do you maybe know how to make excluding type of Master forum?