I’d like to remove the “or login to submit question” span below the e-mail address form on the Submit Question page. I don’t want anyone to login to my site or register. Register is already disabled via Word Press I just don’t want my users to think they could register.
1 Answers
To resolve this issue you can open the template-function.php file in the folder path “\wp-content\plugins\dw-question-answer\inc”. find the line 115
I’ve removed line 115 and still getting the login, this seems like it is an incomplete answer, is there more to add to the css file?
You can add the following code to the style.css file:
.dwqa-submit-question .question-signin .user-email span {
display: none;
}
Regards,
Please login or Register to submit your answer