auto approve user comments on submit
-
I’m trying to allow automatic approval of comments by users without admin approval. I have unchecked the options
Before a comment appear:
An administrator must always approve the comment
Comment author must have a previously approved commentsI even did
add_filter( 'pre_comment_approved', 'wpse47172_approve_logged_in_users' ); function wpse47172_approve_logged_in_users( $approved ) { return 1; } add_action('wp_enqueue_scripts', 'my_scripts_method');
but I still get
“Your comment is awaiting moderation.”
Any suggestions?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘auto approve user comments on submit’ is closed to new replies.