This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Exclude some forums from latest forum posts?


avatar
error 232
From: -
Exclude some forums from latest forum posts?

How to exclude some forums being showed up in latest forum posts block?

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Exclude some forums from latest forum posts?
avatar
Editor
0
From: -
Find:

$results = $uwrapper -> bbquery( "SELECT tid, title, forum_id FROM " . $uwrapper -> bbescape( $preferences[ 'website_uwrapper_prefix' ] ) . "topics ORDER BY last_post DESC LIMIT 10" ); 


and change it to:

$results = $uwrapper -> bbquery( "SELECT tid, title, forum_id FROM " . $uwrapper -> bbescape( $preferences[ 'website_uwrapper_prefix' ] ) . "topics WHERE NOT(forumid = '2') OR NOT(forumid = '4') ORDER BY last_post DESC LIMIT 10" ); 


In this example I have added WHERE NOT(forumid = '2') OR NOT(forumid = '4') to exclude forum 2 and 4.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.