how to force users to fill in "reason for editing"?
3 posters
Page 1 of 1
how to force users to fill in "reason for editing"?
Hello, so I've read in this thread
https://help.forumotion.com/t128821-how-can-i-add-last-edited-line?highlight=last+edited+by#hidebox
that:
"Unless a post has been made after that post, only when you edit without a reason will it show that it was edited.
Once you edit the first post when a post has been made, then it will show.
If no posts were made after your post, it will only display if you fill in the editing reason."
So how do I forced users to fill in the reason for editing?
Thank you.
https://help.forumotion.com/t128821-how-can-i-add-last-edited-line?highlight=last+edited+by#hidebox
that:
"Unless a post has been made after that post, only when you edit without a reason will it show that it was edited.
Once you edit the first post when a post has been made, then it will show.
If no posts were made after your post, it will only display if you fill in the editing reason."
So how do I forced users to fill in the reason for editing?
Thank you.
Last edited by Mounrou on January 6th 2015, 1:55 pm; edited 1 time in total
Re: how to force users to fill in "reason for editing"?
i may be wrong but i dont think their is a option on for this i looked and could not find one... but if someone doent find it for you .. you can goto
acp>modules>javascript management
turn on javascript then save
create a new javascript
set to in all pages
submit
acp>modules>javascript management
turn on javascript then save
create a new javascript
set to in all pages
- Code:
$(function() {
var rsmsg = '*You Must Enter A Reason To Send';
if($('input[name="edit_reason"]').val() == ""){
$('input[name="post"]').attr('disabled','disabled');
$('input[name="edit_reason"]').after(' <br><span id="edrmsg" style="color:red;font-weight:bolder;">'+rsmsg+'</span>');
}
else{
$('input[name="post"]').removeAttr('disabled');
$('#edrmsg').remove();
}
$('input[name="edit_reason"]').keyup(function(){
if($('input[name="edit_reason"]').val() == ""){
$('input[name="post"]').attr('disabled','disabled');
$('input[name="edit_reason"]').after(' <br><span id="edrmsg" style="color:red;font-weight:bolder;">'+rsmsg+'</span>');
}
else{
$('input[name="post"]').removeAttr('disabled');
$('#edrmsg').remove();
}
})
});
submit
Re: how to force users to fill in "reason for editing"?
Well I'd hope for something less technical, but this seems to be working.
Thanks, man.
Thanks, man.
Re: how to force users to fill in "reason for editing"?
Topic solved and archived
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
Similar topics
» Reason For Editing
» Reason for editing
» Reason for editing box
» Reason for Editing - Background
» How to force a rank on new users.
» Reason for editing
» Reason for editing box
» Reason for Editing - Background
» How to force a rank on new users.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum