Edit Comments is a simple WordPress plugin that allows commenters to edit their own comments. To edit a comment, a user must have the same IP address … |
Noted That:
|
Start the Tips:1. First Download "edit-comments.zip" Plugin to your Local Computer. (Click Download) 2. Then, Login to your "yourdomain.com/wp-admin" Dashboard. 3. Then, Click on "Plugins" + "Add New" from left sidemenu of Dashboard. 4. Now, Click on "Upload Plugin" button.
5. Now, Browse "edit-comments.zip" Downloaded plugin from your computer, Where you downloaded edit-comments.zip According to Step – 1 Above then, click on "Install Now" 6. Now, Click on "Active Plugin" 7. Then, See left sidemenu. "Edit Comments" folder is added on left sidemenu. Now, Click on "Edit Comments" folder. Noted that: If you do not see "Edit Comments" folder on left sidemenu then, see at left sidemenu "Settings" or "Tools". 8. Now you configure yourself oR Watch video tutorial below about Edit Comments Configurtions and Settings or How to work "Edit Comments" in your WordPress site. oR After Activated Plugin According to Step-6 then,
![]() |
Guide |
---|
Unfortunately, the edits required to make this plugin work are fairly extensive. They don’t, however, require any core edits, which means upgrading WordPress versions will not affect this plugin. I’ll try to explain the edits the best I can.
NOTE: For people using the default theme, Kubrick, I’ve included a modified copy of the comments.php file. It contains all the edits needed to make the plugin work. If you’re using a Kubrick-based theme, that file may also work for you.
5a. First thing to do is add the link that users will click on to edit their comments. This will be added within the comment loop. The beginning of the comment loop looks like this: And the end of the comment loop looks like: Anything inbetween those two bits of code will be repeated for each comment. We need to add a tag that will create the link somewhere in this loop. The code is: . An example would be: at | This will output the comment date and time, and then the edit link. This function is a good replacement for WordPress’s edit_comment_link(). It uses the same structure and arguments. 5b. Now we need to account for three possible scenarios.
In your file, the first 2 are already accounted for. We need to make room for the last one. Find this: . It means there is someone logged in. The next line might be something like “ < p>Logged in as…..” Here we go with a big edit. Delete this: 5c. Now we need to edit the where users input their comments. Look for: And replace it with: 5d. You’re pretty much done! Now, we can just do a bit of beautification and cleanup. We obviously don’t want to have the “Leave a Reply” message as the header of the comment area if they’re editing a comment. So change this: Leave a ReplyTo: The above uses a ternary operator. Basically, if the someone is editing a comment, it will print “Edit your Comment”, and if not it will print “Leave a Reply” . You could also use this technique for the submit button.
|
edit, comments, must, user, same, address, comment, have, commenters, simple, |
Name |
---|
Reffered: https://wordpress.org/