Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#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
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