Hi, I want to redirect after the ask question. Now I use manually approved and write asking page modorator waiting. I dont want this I want to redirect different page. How I will make?
To redirect users to a different page when user submit a question, please open the actions.php file in the folder path wp-content -> plugins -> dw-question-answer-pro -> inc -> Handle.php
.
Find the line code around line 546:exit( wp_safe_redirect( get_permalink( $new_question ) ) );
Then replace with the following code to redirect to home page:exit( wp_safe_redirect( home_url() ) );
Notice: you can use similar to redirect user to any other page as you wish (in your case to the question listing page)
Eg: like this is my url : http://mysite/discussion-forum/
exit( wp_safe_redirect( home_url() .'discussion-forum/' ) );
Please login or Register to submit your answer