Using OceanWP, anonymous comments on questions and answers do not show up. I have tried everything, including allowing permissions for anonymous users to comment but the anonymous comments still fail to show up.
1 Answers
You can try the following code into your functions.php file:
add_action( 'after_setup_theme', 'dwqa_remove_filter', 99 );
function dwqa_remove_filter(){
remove_filter( 'comment_form_default_fields', 'oceanwp_modify_comment_form_fields' );
}
Please login or Register to submit your answer