=== Edit Comments === Tags: comments,edit comments Contributors: jalenack This release: August 30, 2005 Version: 0.3 Beta == Description == 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 as the user that made the comment and they must also make the edit within a specific time frame. The default edit time window is 30 minutes, but it can be changed easily in the plugin file. If you're logged in, it will use the more feature-enhanced wp-admin comment editing screen, but if you aren't then it will just allow you to edit the content of your comment. It's a good idea to test the plugin from a logged-out view as well. == Installation == 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. 1. Upload the plugin file "jal-edit-comments.php" to your plugins folder. This folder is located at /wp-contents/plugins/ 2. Activate the plugin from your WordPress admin panel. 3. Here's where it gets tricky. We're going to need to make some changes to the comments.php file of your theme. This file is located in /wp-content/themes/**YOUR THEME NAME***/comments.php 4. Before we make any edits, let's make a backup of comments.php . Copy the file and name it comments-backup.php . You should now have two comment files in your theme directory, one called comments-backup.php and one called comments.php . 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. 5. For the rest of you, it'll require quite a bit of tweaking to get it right. Make the following edits to your comments.php file: 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. * Someone who is logged in and making a comment * Someone who isn't logged in and making a comment * Someone who is editing their comment (logged in or not doesn't matter) 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 "
Logged in as....." Here we go with a big edit. Delete this: And change it to: 5c. Now we need to edit the If you're still lost, refer to the next FAQ. = I am totally lost on how to install this. Can you do it for me? = Yeah, I guess. Email me with your comments.php file attached, and I'll try to make the edits for you. No promises though. A small donation would go a long way in motivating me to do it for you :) == Contact Developer == I am always eager to help you with your problems involving this plugin. Chances are there's something wrong with my code and by telling me you are probably helping other users too. * Email: jalenack@gmail.com * AIM: Harc Serf ICQ: 305917227 Yahoo: jalenack MSN Messenger: jalenack@hotmail.com * Online Contact form: http://blog.jalenack.com/contact.php * = Most likely venues for a quick response