MyBB Community Forums

Full Version: newpost page show certain forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i made a newposts page from this tutorial from leefish and i want to show certain forums in this page not all of them how can i do that?
open newposts.php file in a code editor (eg. notepad++) and find the query code (around line 79)
AND t.fid NOT IN(15,20,43,44,68,45,36)
in the above code, forums with IDs 15, 20, 43, 44, 68, 45, 36 are excluded from the results
you have to change those forum IDs with your own forum IDs for which you do not want the results

or you can change that line to below, where A, B, C, D ... etc are forum IDs from which you want to show the threads
AND t.fid IN(A,B,C,D,E,....)
thank you m