Arario
asked 4 years ago

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
DominicStaff
answered 4 years ago

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' );
}
Powered by DW Question & Answer Pro