Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
683 views
in Plugins by

I would like to move the facebook login page to a seperate page.

There are many reasons many of which you are familiar which. It has already been asked by otheres too:

http://www.question2answer.org/qa/13333/move-facebook-login-on-register-page

http://www.question2answer.org/qa/20659/how-to-move-up-facebook-login-button-in-register-page

Q2A version: Q2A 1.5.4

2 Answers

0 votes
by

you can try this code 

 

in to the qa-page-register.php
 
if (QA_FINAL_EXTERNAL_USERS)
qa_fatal_error('User registration is handled by external code');
 
add the below code in place of upper code
 
if (QA_FINAL_EXTERNAL_USERS)
qa_register_plugin_module('login', 'qa-facebook-login.php', 'qa_facebook_login', 'Facebook Login');
 
 
not tested yet but i hope its work
 
Note: first activate your facebook plugin
–1 vote
by
Any help please? I dont want the facebook login to appear on front page( it damages the page structure ) I wanan create a seperate login page and place it there)
...