In Sources/Boardindex.php
Find
WHERE $user_info[query_see_board]
AND b.ID_CAT = c.ID_CAT
AND b.childLevel <= 1
Replace
WHERE b.ID_CAT = c.ID_CAT
AND b.childLevel <= 1
That will make every single board visible to all users, regardless of whether or not they have access to it. If you want to do it only for selective boards, try this:
Find
// Find all boards and categories, as well as related information.
// !!! This query uses a file sort.
Replace
$showids = array(1,2,...); //Put the ids of the boards you want to make visible here
// Find all boards and categories, as well as related information.
// !!! This query uses a file sort.
Find
WHERE $user_info[query_see_board]
AND b.ID_CAT = c.ID_CAT
AND b.childLevel <= 1
Replace
WHERE $user_info[query_see_board] || " . inarray(b.ID_BOARD,$showids) . "
AND b.ID_CAT = c.ID_CAT
AND b.childLevel <= 1
I'm not sure if that last thing will work or not, but I think it will...