MyBB Community Forums

Full Version: excluding a forum on proportal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi weve got a forum that a rss feed from ebay goes into ive made the forum not searchable in the permissions which stops it displaying when a user clicks new posts or todays posts but it still shows up on latest threads and latest posts on proportal so how do i exclude it from them blocks
can any1 help on this please i`ve had to disable my rss feeds untill this is sorted
anyone ?
open ./portal/block_latestthreads.php file in a code editor (eg. notepad++)

find code like below (around line 14)
// Get forums user cannot view
$unviewable = get_unviewable_forums();

add after above (in a new line) :
$unviewable .= x;
where x is the forum id - which should be excluded. save the file and check if it works as required