vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   get certain forums to NOT show up in the "new Posts" querey? (https://vborg.vbsupport.ru/showthread.php?t=108787)

kofoid 02-24-2006 04:03 PM

get certain forums to NOT show up in the "new Posts" querey?
 
How do you get a particular forum to NOT show up when a user click on "new posts?"

I think this may have to be a mod....

Andreas 02-24-2006 04:09 PM

*** Untested ***

[sql]ALTER TABLE forum ADD ignoregnp TINYINT UNSIGNED NOT NULL DEFAULT '0'[/sql]

forumdata_start
PHP Code:

$this->validfields['ignoregnp'] = array(TYPE_BOOLREQ_NO); 

forumadmin_add_default
PHP Code:

$forum['ignoregnp'] = 0

forumadmin_edit_form
PHP Code:

print_yes_no_row("Exclude this Forum from 'New Posts'"'forum[ignoregnp]'$forum['ignoregnp']); 

search_getnew_start
PHP Code:

foreach ($vbulletin->forumcache AS $forum)
{
    if (
$forum['ignoregnp')
    {
        
$vbulletin->GPC['exclude'] .= ",$forum[forumid]";
    }


Or, if you want to give the users a choice whil forums they want to exclude, check my profile.

kofoid 02-24-2006 04:10 PM

THANKS!!! Now quick question - where do I add the code?

Andreas 02-24-2006 04:19 PM

<a href="https://vborg.vbsupport.ru/showpost.php?p=909200&postcount=2" target="_blank">https://vborg.vbsupport.ru/showp...00&postcount=2</a>

kofoid 02-24-2006 04:49 PM

OK let me RE ASK the question so I don't get an answer like I did before. You specified code but I do not understand what should be changed or WHERE the code needs to be added. Can you or someone else help me to understand?

Andreas 02-24-2006 04:52 PM

The hook locations for the plugins are clearly pointed out in my previous post?

If you do not understand plugins, I suggest to read the manual:
http://www.vbulletin.com/docs/html/plugin_system

kofoid 02-25-2006 02:09 PM

OK I am really uncomfortable doing this, Although it would probably be easy for someone more experienced to handle. Any chance of someone creating a plugin for me? I will pay

Princeton 02-25-2006 02:24 PM

Laura,

I'm not sure if you are aware of this but threads/posts in forums that are not visible to the end-user will not display when NEW POSTS is clicked.

Another thing you should try is ... not sure if this works with NEW POSTS
when editing a forum within ADMINCP/ Forums & Moderators disable INDEX NEW POST IN SEARCH ENGINE (this option will prevent anyone from being able to search in forum)

If this is not what you want ... I recommend following what ANDREAS mentioned above.

kofoid 02-25-2006 09:29 PM

Thanks Joe! I will give it a shot

Andreas 02-25-2006 09:31 PM

Index New Posts in Search Engine does not have an effect on Get New 'Posts/Get Daily

DeanoG 02-27-2006 12:30 PM

Quote:

Originally Posted by Andreas
*** Untested ***

search_getnew_start
PHP Code:

foreach ($vbulletin->forumcache AS $forum)
{
    if (
$forum['ignoregnp')
    {
        
$vbulletin->GPC['exclude'] .= ",$forum[forumid]";
    }




there is a slight error in the Code above,

PHP Code:

if ($forum['ignoregnp'

should be...

PHP Code:

if ($forum['ignoregnp']) 


apart from the small typo .... this works perfecty.

Thanks Andreas


All times are GMT. The time now is 08:41 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01314 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (11)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete