• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

How To Increase 420 Comment Characters?

anthony parsons

Member
Showcase
Pick'em
Sportsbook
Hey Bob,

How do I increase the 420 character limit imposed on the comments? We have discussions, thus 420 characters is often exceeded just, and it's painful.

Thanks,

Anthony
 
Its hard coded into the DataWriter, so for now, you'll need to make a simple/quick file edit.

edit file: /library/NFLJ/Sportsbook/DataWriter/Comment.php

Line 13: change 420 to how many characters you want
PHP:
                'message'        => array('type' => self::TYPE_STRING, 'required' => true, 'maxLength' => 420, 'requiredError' => 'please_enter_valid_message'),
 
Back
Top