I would like to change the url of the "ask question" button in the questions page when user is not logged.
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 !
thank you!!
Please login or Register to submit your answer