Minimum Characters Per Post - vB question

Discussion in 'vBulletin' started by buffalo, Dec 9, 2008.

  1. #1
    I have the Minimum Characters Per Post set at 15 for the entire forum. But I have one specific category where I'd like to disable it, or at least reduce it to 5. Is there any way to do it?
     
    buffalo, Dec 9, 2008 IP
    mightyb likes this.
  2. mikey1090

    mikey1090 Moderator Staff

    Messages:
    15,869
    Likes Received:
    1,055
    Best Answers:
    0
    Trophy Points:
    445
    Digital Goods:
    2
    #2
    You'd probably need a mod of some sort adding. Unless a plugin already exisits for this.
     
    mikey1090, Dec 27, 2008 IP
  3. fattony69

    fattony69 Well-Known Member

    Messages:
    443
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    130
    #3
    Why not compromise and make it all around 10?
     
    fattony69, Dec 28, 2008 IP
  4. Shadab

    Shadab Peon

    Messages:
    376
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Create a plugin. Details below :

    AdminCP -> Plugins & Products -> Add New Plugin

    • Product : vBulletin

    • Hook Location : global_start

    • Execution Order : 5

    • Title : Lesser Minimum Character Limit for Posts

    • Plugin is Active : Yes

    Plugin PHP Code :
    if( $foruminfo['forumid'] == 3 )
    {
    	$vbulletin->options['postminchars'] = 5;
    }
    PHP:
    -------------------------------------------------------------------

    Replace 3 with the FORUMID for which you want to alter the minimum character limit.
    And 5 is the limit you want to place.

    -------------------------------------------------------------------

    If you want to have this alternate restriction on MULTIPLE forums/sub-forums,
    use this Plugin PHP Code :

    if( in_array( $foruminfo['forumid'], array(3, 2, 143, 45) ) )
    {
    	$vbulletin->options['postminchars'] = 5;
    }
    PHP:
    Where 3, 2, 143, 45 are comma-separated FORUMID values.

    -------------------------------------------------------------------

    [​IMG]
     
    Shadab, Dec 28, 2008 IP
    buffalo likes this.
  5. buffalo

    buffalo Illustrious Member

    Messages:
    11,528
    Likes Received:
    1,014
    Best Answers:
    0
    Trophy Points:
    410
    #5
    Thank you Shadab! That looks perfect. I am having hosting problems right now, but as soon as it's back up I will try that! :D
     
    buffalo, Dec 28, 2008 IP
    Shadab likes this.
  6. Shadab

    Shadab Peon

    Messages:
    376
    Likes Received:
    26
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Okie Dokie. :D

    *goes to make it a full fledged product*
     
    Shadab, Dec 29, 2008 IP