MyBB Hacks

Full Version: related threads
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi ! i ask if you know a plug in that show  related threads of other forum or category.

Because default setting only show threads in the same forum
Try opening up showthread.php in a text editor. Find (around line 984):

PHP Code:
WHERE t.fid='{$thread['fid']}' AND t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND t.subject @@ query


Remove:

PHP Code:
t.fid='{$thread['fid']}' AND


It should look like this:

PHP Code:
WHERE t.tid!='{$thread['tid']}' AND t.visible='1' AND t.closed NOT LIKE 'moved|%' AND t.subject @@ query


Not Tested

Reference URL's