The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

minimum character post

2 posters

Go down

Solved minimum character post

Post by Sukii March 9th 2013, 4:35 am

Hi, how do I add a minimum character when someone posts? Is it possible?

Sukii
Sukii
New Member

Posts : 16
Reputation : 1
Language : English
Location : Earth

Back to top Go down

Solved Re: minimum character post

Post by Sir Chivas™ March 9th 2013, 4:52 am

Hi,

Create a new JavaScript: ACP >> Modules >> JS codes management >> Add create a new js >> Title: Whatever you want >> Placement : In topics only >> Insert this code:

Code:
$(function() {
var x=document.forms['post'];
$(x.post).click(function(e) {
 if (x.message.value.length < 10) {
  e.preventDefault();
  alert('Your post must contain at least 10 character');
 }
});
});

Save it.

Test it out, create a test thread insert only 3 characters and try posting it. Wink
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Solved Re: minimum character post

Post by Sukii March 9th 2013, 5:01 am

Thank you very much!

minimum characters - minimum character post Untitl10

EDIT: Solved


Last edited by ~TheBird on March 9th 2013, 5:02 am; edited 1 time in total
Sukii
Sukii
New Member

Posts : 16
Reputation : 1
Language : English
Location : Earth

Back to top Go down

Solved Re: minimum character post

Post by Sir Chivas™ March 9th 2013, 5:01 am

No problem, Wink
Is this solved?
He edited the post above.

Topic Solved & Locked
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum