Hi,
We are using another registration/login plugin and we want the "Login To Ask a Question" to go to that login page rather than the WP default registration page. Which php file would I need to change to get that button to point to our new login page?
Thanks,
Ather
1 Answers
Hi,
To resolve this issue, you can open the \wp-content\plugins\dw-question-answer\inc\template-functions.php
file. Find the line 503:
Replace the following code:
$submit_question_link = wp_login_url( $submit_question_link );
With new code:
$submit_question_link ="Your URL";
Hope this helps !
Please login or Register to submit your answer