My website only allows to respond with the administrator’s account and does not allow visitors to reply so I do not want to show the login section to reply. Please guide me how to remove it.
1 Answers
If you want to hide the login form, you can add the following code to the style.css file:
.dwqa-answers-login {
display: none;
}
Or you can open the answers.php file then remove the following code in line 45:
<?php elseif ( ! is_user_logged_in() ) : ?>
<?php dwqa_load_template( 'login', 'form' ) ?>
Please login or Register to submit your answer