Elxis CMS Forum

Support => Elxis 4.x/5.x DEV => Topic started by: seadhna on July 30, 2019, 13:28:53

Title: Possible to increase length of image caption?
Post by: seadhna on July 30, 2019, 13:28:53
Hi, is it possible to increase the limit of characters for image captions from 255? I have some captions which need to be longer.
Title: Re: Possible to increase length of image caption?
Post by: datahell on July 31, 2019, 15:03:14
You must change the maximum length option of the corresponding column in mysql database (table "elx_content").
Current status:
`caption` varchar(255) default NULL

You can change it to, for example, varchar(512)
Title: Re: Possible to increase length of image caption?
Post by: seadhna on July 31, 2019, 18:20:26
Thanks!