XF 1.4 RM tagline chartacters increase

I would like to increase the number of characters (text) displayed for each list item on resouce index (main resources).

Thank you for the reply. I think your answer helps increase the size of the text.
 
I would like to increase the number of characters (text) displayed for each list item on resouce index (main resources).

Thank you for the reply. I think your answer helps increase the size of the text.

You'll have to wait for someone else to respond, then. We don't have the resource manager add-on.
 
The file to change is:
library/XenResource/DataWriter/Resource.php

Find:
PHP:
'tag_line' => array('type' => self::TYPE_STRING, 'required' => true, 'maxLength' => 100,

Change to:
PHP:
'tag_line' => array('type' => self::TYPE_STRING, 'required' => true, 'maxLength' => 200,

An add-on would be better for this but I'm not currently aware of one. You will also need to re-edit the code after each time you upgrade Resource Manager.
 
Top Bottom