Hi,
I’ve found a temporary fix for this issue:
File wp-content/plugins/nextend-facebook-coonnect/nextend-facebook-connect.php
Modify following function new_fb_login_url when ithemes hide backend is activated:
function new_fb_login_url() {
return site_url('wp-login.php') . '&loginFacebook=1';
}
(can be optimized by adding a function detecting if hide backend is activated or not)
And then try with following connection link format (redirecting to home):
<a class="facebook-link" href="https://yoursite.ext/?loginFacebook=1&redirect=https%3A%2F%2Fyoursite.ext%2F" onclick="window.location = 'https://yoursite.ext/?loginFacebook=1&redirect='+window.location.href; return false;">
(NB: For my current project I don’t use the default wp-login.php page)
-
This reply was modified 8 years, 9 months ago by
Macaromix.