I have gotten the method to fix this text length limit,
1. Change DB, cfield_design_values, set the type of value as TEXT.
2. Edit lib\functions\cfield_mgr.class.php
a. Find the follow code
- Code: Select all
const TEXTAREA_MAX_SIZE = 255;
Replaced with
- Code: Select all
const TEXTAREA_MAX_SIZE = 1000;
here, the max size of text area is 1000,
you can change the max size number you want it to be.
b. Find the following code
- Code: Select all
var $max_length_value=255;
Replaced it with
- Code: Select all
var $max_length_value=0;
c. Find the following code
- Code: Select all
var $max_length_possible_values=255;
Replaced it with
- Code: Select all
var $max_length_possible_values=0;
All set, you can play with unlimited text area, happy everyday guys.