Quote:
Originally Posted by AnthemToGod
How to hide some forums id ?
widget displays all forum threads but I have some invisible area on my forum... how to except some id's ?
|
find them
sql:
FROM " . TABLE_PREFIX . "thread AS thread
LEFT JOIN " . TABLE_PREFIX . "forum AS forum ON ( forum.forumid = thread.forumid )
WHERE NOT ISNULL(threadid)
and forum.forumid not in(82,41,159) AND visible = '1' AND open!='10'
ORDER BY lastpost DESC
LIMIT 0, 15