vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Minimum Post Characters in Specific Forum (https://vborg.vbsupport.ru/showthread.php?t=296959)

SirVault 04-07-2013 03:14 PM

Minimum Post Characters in Specific Forum
 
How can I change the minimum post characters for one specific forum only?

So say for the entire forum I have a minimum post character of 10. How would I make it a minimum of 3 for one specific forum?

Thanks.

Lynne 04-07-2013 03:36 PM

Probably something like...

hook - fetch_foruminfo
PHP Code:

if ($forumid == 'xxx')
{
    
$vbulletin->options['postminchars'] = 'yyy';



SirVault 04-07-2013 08:09 PM

Quote:

Originally Posted by Lynne (Post 2414931)
Probably something like...

hook - fetch_foruminfo
PHP Code:

if ($forumid == 'xxx')
{
    
$vbulletin->options['postminchars'] = 'yyy';



Where's this go?

CoffeeLovesYou 04-08-2013 02:16 AM

Make sure you have your Plugin/Products enabled in vB Options.
If you go, in the ACP, go to Products/Plugins and Add New Plugin. Make the name of it whatever you want (i.e. Minimum Chars for Forum ID xxx) and for the hook, set it to fetch_foruminfo in the dropdown box. Leave execution order how it is.
Paste that code Lynne provided into the plugin code.
For example, if you want ForumID 3 to have 5 min chars, the code will be:

PHP Code:

if ($forumid == '3')
{
    
$vbulletin->options['postminchars'] = '5';


If you wanna do more than one forum, just keep adding them on.

i.e.

PHP Code:

if ($forumid == '3')
{
    
$vbulletin->options['postminchars'] = '5';
}  
if (
$forumid == '32')
{
    
$vbulletin->options['postminchars'] = '1';



SirVault 04-09-2013 05:43 PM

Thanks a bunch guys. :)


All times are GMT. The time now is 01:52 AM.

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.01056 seconds
  • Memory Usage 1,728KB
  • 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
  • (4)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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