when users want they alwas are allow to edit their post and I dont wont them to edit their posts and what will I do for this?
+2
medusa
Mariami
6 posters
edit posts
medusa- Forumember
- Posts : 52
Reputation : 1
Language : Danish, English
Location : Denmark
- Post n°2
Re: edit posts
I'm not totally sure if this works:
My suggestion would be(but that would probably also stop yourself from editing)
You can go to administration panel/Display/pics management/advance/buttons
and then simply remove the picture of the edit button.
My suggestion would be(but that would probably also stop yourself from editing)
You can go to administration panel/Display/pics management/advance/buttons
and then simply remove the picture of the edit button.
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°3
Re: edit posts
You can set an edit duration or takeaway their ability to edit by going to
ACP --> General --> Messages and Emails --> Configuration
You'll find the options there
ACP --> General --> Messages and Emails --> Configuration
You'll find the options there
SLGray- Administrator
- Posts : 51554
Reputation : 3523
Language : English
Location : United States
- Post n°4
Re: edit posts
Also you can change the forums' permissions.Â
Administration Panel > General > Forum > Categories and Forums
Administration Panel > General > Forum > Categories and Forums
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
_Twisted_Mods_- Helper
- Posts : 2083
Reputation : 336
Language : English
Location : Ms
- Post n°6
Re: edit posts
think it only works for new post
u can use css to hide the button
or a script to remove it for everyone but admin
or goto acp>display>templates>viewtopic_body
and remove
im sure i could think of a few more ways if u still need help
u can use css to hide the button
- Code:
a[href*="editpost"]{display:none!important;}
or a script to remove it for everyone but admin
- Code:
$(function(){
if(_userdata.user_level == 1){}else{$('a[href*="editpost"]').remove();}
});
or goto acp>display>templates>viewtopic_body
and remove
- Code:
<li>{postrow.displayed.EDIT_IMG}</li>
im sure i could think of a few more ways if u still need help
Mad Scientist- New Member
- Posts : 18
Reputation : 2
Language : English
- Post n°7
Re: edit posts
Hello @Mariami,
They have to work. As Derri said, in Configuration there you will have option "Post edit duration limit for a member". Just set it to zero, however Moderators and Administrators won't be affected by this most probably. This option can be used for example when you want to allow members to edit their posts for a while and then restrict it not to have things such as members raging and then removing their contribution posts later on (posted GFX work, tutorials etc).
But, if you want to disable editing for your regular members as a whole, simply go to permissions as SLGray told you "Categories and forums" and then you have to open up permissions of all forums you want to disable editing, scroll down to Advanced Mode and click it to expand permissions tab. Then find "Edit its own messages" and uncheck for all groups you want to disable. That has to work.
They have to work. As Derri said, in Configuration there you will have option "Post edit duration limit for a member". Just set it to zero, however Moderators and Administrators won't be affected by this most probably. This option can be used for example when you want to allow members to edit their posts for a while and then restrict it not to have things such as members raging and then removing their contribution posts later on (posted GFX work, tutorials etc).
But, if you want to disable editing for your regular members as a whole, simply go to permissions as SLGray told you "Categories and forums" and then you have to open up permissions of all forums you want to disable editing, scroll down to Advanced Mode and click it to expand permissions tab. Then find "Edit its own messages" and uncheck for all groups you want to disable. That has to work.