Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.3k views
in Q2A Core by
I installed Q2A on a subdomain ( qa.site.com ) and having a Wordpress on the root and integrated them.

I have created my own register/login page on Wordpress theme but Q2A referes users to the original Wordpress register/login pages.

How I can send users to my own authentication pages?
Q2A version: 1.6.2

1 Answer

+1 vote
by
selected by
 
Best answer

use a better plugin such as 'theme my login' on wordpress and configure it to accept redirections to Q2A section.

if it didn't work open "qa-include/qa-external-users-wp.php", then find and replace this text with actual URL of your WP site:

wp_login_url(qa_opt('site_url').$redirect_back_to_url)

by
I changed "login", "register" & "logout" parameters in that file to my preferred authentication pages and works perfectly! thank you :)
...