I'm using a very simple plugin called Semi Private Comments which does almost everything I need, it hides comments from other users and allows only the author of the comment and the admin to view the comment. My problem is the plugin allows any admin comment to be viewed by anyone. I would like it to keep the comment between the admin and any user a one on one conversation.

I really don't know PHP well enough to modify the plugins logic and was hopping for some help.

Here's the code.

if (current_user_can('edit_users') ||   // user is admin, or 
        $user_matched==1 ||                 // user is original author, or
        $comment->user_id == 1)             // comment author is admin
    {
        return $content;
    }
    else
    {
        $hidden_comment_text = get_option('spc_hidden_comment_text');
        return $hidden_comment_text;
    }
}
else
{
    return $content;
}
link|improve this question
Did you enable threaded comments? I mean this is a requirement to define a "conversation". Maybe the implementation will involve adding a new column thread_author in wp_comments table to mark who initiated the conversation (or put this information in wp_commentmeta). – qingbo Aug 31 '11 at 8:29
feedback

1 Answer

up vote 0 down vote accepted

I think just removing the $comment->user_id == 1 should do the trick

if (current_user_can('edit_users') ||   // user is admin, or 
    $user_matched==1)                 // user is original author
{
    return $content;  // Only admins and authors of the comment can read
}
else
{
    $hidden_comment_text = get_option('spc_hidden_comment_text');
    return $hidden_comment_text;
}

Btw, the code snipped you posted is incomplete the if statement of the following part is missing

}
else
{
    return $content;
}
link|improve this answer
Thanks Mark this worked! I appreciate your help! – Virgil Lee Shelton Sep 1 '11 at 23:33
Glad I could help :) – Mark Sep 2 '11 at 9:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.