It won’t work by default, but by reading through the code, I think it can be modified to work. I haven’t tested this, but basically what the modifications do is remove the non-email related functionality. Actual replies will be handled by AWP.
Open the plugin file.
Find:
if (isset($_POST["user_ID"]) and (!empty($_POST["reply_to"]))) {
Replace With: Fixes a security bug
global $userdata;
get_currentuserinfo();
$_POST["reply_to"] = $_POST["comment_parent"];
if ($userdata->user_level == 10 and (!empty($_POST["reply_to"]))) {
Find:
// Hook into comment display
add_filter('get_comment_author_link', 'cer_add_comment_icon');
add_action('comment_form', 'cer_add_comment_footer');
// Bind Options Page to the admin menu
add_action('admin_menu', 'cer_configure_pages');
// Add Javascript bit to header
add_action('wp_head', 'cer_add_code_header');
Replace With:
// Hook into comment display
//add_filter('get_comment_author_link', 'cer_add_comment_icon');
//add_action('comment_form', 'cer_add_comment_footer');
// Bind Options Page to the admin menu
add_action('admin_menu', 'cer_configure_pages');
// Add Javascript bit to header
//add_action('wp_head', 'cer_add_code_header');