Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2014-01-09 11:01:21

matteo
Member
Registered: 2013-12-19
Posts: 26

Limit characters in the article's body of administration area

How can I limit the insertion of characters in the body of article in the administration area ?
Thanks.

Matteo

Offline

#2 2014-01-20 23:18:29

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Limit characters in the article's body of administration area

So you want t limit the body field to only accept a certain max number of characters?

There is no core way of doing this, it’d be the realm of a plugin (although I can’t see why people would need this feature).

Offline

#3 2014-01-21 01:49:56

GugUser
Member
From: Quito (Ecuador)
Registered: 2007-12-16
Posts: 1,477

Re: Limit characters in the article's body of administration area

Yes, I also think “why people would need this feature?”. But, you can do it with JS/jQuery. The easiest way is with the bot write tab customize plugin.

In “Additional js code” you put:

<script>
    $(function() {
        $("#body").attr("maxlength", "5");
    });
</script>

This limits the entry to 5 characters.

Offline

Board footer

Powered by FluxBB