Comment Edit Lite for WordPress 3.5+
Comment Edit Lite is a stripped down version of Ajax Edit Comments.
The biggest differences:
- Only anonymous users (and logged in users who don't have permission to edit comments) can edit their comments for a period of time (the default is 5 minutes).
- There are no styles included with this plugin. For most themes, the appearance is acceptable. For advanced customization, see the "Styles" section.
- There are no options. Some defaults can be overwritten using filters.
- Just unzip and upload the "simple-comment-editor" folder to your '/wp-content/plugins/' directory
- Activate the plugin through the 'Plugins' menu in WordPress
It's impossible to style an inline comment editor for every theme. We've included basic HTML markup that is easily stylable to fit your theme.
No options :) - Just simple comment editing.
See "Styles" section.
- IE 6-10
- Latest versions of Chrome, Firefox, and Safari
- iOS Safari
- Twenty Ten
- Twenty Eleven
- Twenty Twelve
- Twenty Thirteen
- Genesis
- Genesis Mindstream
/**
* Filter: sce_loading_img
*
* Replace the loading image with a custom version.
*
* @since 1.0.0
*
* @param string $image_url URL path to the loading image.
*/
Example:
//Comment Edit Lite
add_filter( 'sce_loading_img', 'edit_sce_loading_img' );
function edit_sce_loading_img( $default_url ) {
return 'http://domain.com/new_loading_image.gif';
}
/**
* Filter: sce_comment_check_errors
*
* Return a custom error message based on the saved comment
*
* @since 1.2.4
*
* @param bool $custom_error Default custom error. Overwrite with a string
* @param array $comment_to_save Associative array of comment attributes
*/
Here's an example:
add_filter( 'sce_comment_check_errors', 'custom_sce_check_comment_length', 15, 2 );
function custom_sce_check_comment_length( $return = false, $comment = array() ) {
$comment_content = trim( wp_strip_all_tags( $comment[ 'comment_content' ] ) );
$comment_length = strlen( $comment_content );
if ( $comment_length < 50 ) {
return 'Comment must be at least 50 characters';
}
return false;
}
/**
* Filter: sce_allow_delete
*
* Determine if users can delete their comments
*
* @since 1.1.0
*
* @param bool $allow_delete True allows deletion, false does not
*/
Example:
// Disable delete functionality
add_filter( 'sce_allow_delete', '__return_false' );
/**
* Filter: sce_allow_delete_confirmation
*
* Boolean to decide whether to show a delete confirmation
*
* @since 2.1.7
*
* @param bool true to show a confirmation, false if not
*/
Example:
add_filter( 'sce_allow_delete_confirmation', '__return_false' );
This is only used when retrieving a comment via Ajax and can be used by third-party plugins who post comments using Ajax
/**
* Filter: sce_get_comment
*
* Modify comment object
*
* @since 1.5.0
*
* @param object Comment Object
*/
/**
* Filter: sce_extra_fields
*
* Filter to add additional form fields
*
* @since 1.4.0
*
* @param string Empty string
* @param int post_id POST ID
* @param int comment_id Comment ID
*/
/**
* Filter: sce_buttons
*
* Filter to add button content
*
* @since 1.3.0
*
* @param string $textarea_buttons Button HTML
* @param int $comment_id Comment ID
*/
/**
* Filter: sce_content
*
* Filter to overral sce output
*
* @since 1.3.0
*
* @param string $sce_content SCE content
* @param int $comment_id Comment ID of the comment
*/
/**
* Filter: sce_save_before
*
* Allow third parties to modify comment
*
* @since 1.4.0
*
* @param object $comment_to_save The Comment Object
* @param int $post_id The Post ID
* @param int $comment_id The Comment ID
*/
/**
* Filter: sce_can_edit
*
* Determine if a user can edit the comment
*
* @since 1.3.2
*
* @param bool true If user can edit the comment
* @param object $comment Comment object user has left
* @param int $comment_id Comment ID of the comment
* @param int $post_id Post ID of the comment
*/
Example: https://gist.github.com/ronalfy/6b4fec8b3ac55bc47f3f
/**
* Filter: sce_security_key_min
*
* Determine how many security keys should be stored as post meta before garbage collection
*
* @since 1.0.0
*
* @param int $num_keys How many keys to store
*/
/**
* Filter: sce_load_scripts
*
* Boolean to decide whether to load SCE scripts or not
*
* @since 1.5.0
*
* @param bool true to load scripts, false not
*/
/**
* Filter: sce_comment_time
*
* How long in minutes to edit a comment
*
* @since 1.0.0
*
* @param int $minutes Time in minutes
*/
Example:
//Comment Edit Lite
add_filter( 'sce_comment_time', 'edit_sce_comment_time' );
function edit_sce_comment_time( $time_in_minutes ) {
return 60;
}
/**
* Filter: sce_show_timer
*
* Filter allow you to hide the timer
*
* @since 2.3.0
*
* @param bool Whether to show the timer or not
*/
Example:
//Comment Edit Lite - Disable the timer
add_filter( 'sce_show_timer', '__return_false' );
/**
* Filter: sce_text_edit
*
* Filter allow editing of edit text
*
* @since 2.0.0
*
* @param string Translated click to edit text
*/
Example:
add_filter( 'sce_text_edit', function( $translated_text ) {
return "Custom Edit Text";
} );
/**
* Filter: sce_text_save
*
* Filter allow editing of save text
*
* @since 2.0.0
*
* @param string Translated save text
*/
Example:
add_filter( 'sce_text_save', function( $translated_text ) {
return "Custom Save";
} );
/**
* Filter: sce_text_cancel
*
* Filter allow editing of cancel text
*
* @since 2.0.0
*
* @param string Translated cancel text
*/
Example:
add_filter( 'sce_text_cancel', function( $translated_text ) {
return "Custom Cancel";
} );
/**
* Filter: sce_text_delete
*
* Filter allow editing of delete text
*
* @since 2.0.0
*
* @param string Translated delete text
*/
Example:
add_filter( 'sce_text_delete', function( $translated_text ) {
return "Custom Delete";
} );
Useful for custom comment fields
/**
* Action: sce_save_after
*
* Allow third parties to save content after a comment has been updated
*
* @since 1.4.0
*
* @param object $comment_to_save The Comment Object
* @param int $post_id The Post ID
* @param int $comment_id The Comment ID
*/
/**
* Event: sce.comment.save.pre
*
* Event triggered before a comment is saved
*
* @since 1.4.0
*
* @param int $comment_id The Comment ID
* @param int $post_id The Post ID
*/
/**
* Event: sce.comment.save
*
* Event triggered after a comment is saved
*
* @since 1.4.0
*
* @param int $comment_id The Comment ID
* @param int $post_id The Post ID
*/
/**
* Event: sce.timer.loaded
*
* Event triggered after a commen's timer has been loaded
*
* @since 1.3.0
*
* @param jQuery Element of the comment
*/
This hook is useful for third-party plugins who post comments via Ajax.
/**
* Event: sce.comment.loaded
*
* Event triggered after SCE has loaded a comment.
*
* @since 1.5.0
*
* @param object Comment Object
*/
JS hooks are using WP-JS-Hooks: https://github.com/carldanley/WP-JS-Hooks
Please use handle wp-hooks when enqueueing for consistency and to prevent conflicts.
Used to modify POST object before being sent via Ajax. This is useful for adding extra fields.
/**
* JSFilter: sce.comment.save.data
*
* Event triggered before a comment is saved
*
* @since 1.4.0
*
* @param object $ajax_save_params
*/
Used to modify timer output.
/**
* JSFilter: sce.comment.timer.text
*
* Filter triggered before a timer is returned
*
* @since 1.4.0
*
* @param string Timer text
* @param string Minutes text (internationalized)
* @param string Seconds text (internationalized)
* @param int minutes
* @param int seconds
*/
Example placed in functions.php
:
add_action( 'wp_footer', function() {
?>
<script type="text/javascript">
jQuery( document ).ready( function( $ ) {
/* Will give you format of minutes:seconds (e.g., 2:58) */
if (typeof wp.hooks != 'undefined') {
wp.hooks.addFilter( 'sce.comment.timer.text', function( timer_text, minutes_text, seconds_text, minutes, seconds ) {
timer_text = ' ' + minutes;
timer_text += ":";
if (seconds >= 0) {
if( seconds < 10 ) {
timer_text += '' + '0' + seconds;
} else {
timer_text += seconds;
}
}
return timer_text;
} );
}
} );
</script>
<?php
} );
The plugin doesn't come with any styles. We leave it up to you to style the interface. It doesn't look horribly ugly on most themes, but we leave the advanced customization up to you.
The overall editing interface has been wrapped in a div
with class sce-edit-comment
.
.sce-edit-comment { /* styles here */ }
The edit button and timer have been wrapped in a div
with class sce-edit-button
.
.sce-edit-button { /* styles here */ }
.sce-edit-button a { /* styles here */ }
.sce-edit-button .sce-timer { /* styles here */ }
The loading icon has been wrapped in a div
with class sce-loading
.
.sce-loading { /* styles here */ }
.sce-loading img { /* styles here */ }
The textarea interface has been wrapped in a div
with class sce-textarea
.
The actual textarea
has been wrapped in a div
with class sce-comment-textarea
.
The save/cancel buttons have been wrapped in a div
with class sce-comment-edit-buttons
.
.sce-textarea { /* styles here */ }
.sce-textarea .sce-comment-textarea textarea { /* styles here */ }
.sce-comment-edit-buttons { /* styles here */ }
.sce-comment-edit-buttons .sce-comment-save { /* styles here */ }
.sce-comment-edit-buttons .sce-comment-cancel { /* styles here */ }
The status message has been wrapped in a div
with class sce-status
.
Here's some sample styles that mimic how error messages are displayed in the WordPress admin area:
.sce-status {
border-left: 4px solid #FFF;
-webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
background: #fff;
color: #333;
padding: 10px;
margin-top: 10px;
}
.sce-status.error {
border-color: #dd3d36;
}
.sce-status.updated {
border-color: #7ad03a;
}
Since most of the interface is hidden, it's a little hard to style. Just place this into your stylesheet, and remove when you're done.
/* todo - remove me when done styling */
.sce-edit-button,
.sce-loading,
.sce-textarea {
display: block !important;
}
Have fun leaving lots of test comments :) - Recommended is to use the filter (in the FAQ section) to temporarily increase the comment editing time. Make sure you leave the test comments when you're not logged in.