Hi,
BuddyPress clears the Social Login redirect URL (because Dashboard redirects are filtered out, one of their rules).
One workaround, not the best most likely, is to set it back to your chosen URL using hooks, like (in your theme functions.php fil…
Hi,
You can use the 'oa_social_login_filter_user_request_email' filter.
In your theme's functions.php, add the following:
add_filter('oa_social_login_filter_user_request_email', 'custom_email_filter', 10, 2); function custom_email_filter($email, $u…
Hi,
Could you try the following edit?
In FILE: [ROOT]/ext/oneall/sociallogin/acp/sociallogin_acp_module.php, LINE: 2335,
replace: redirect (append_sid (self::get_current_url ()));
with: redirect (append_sid (self::get_current_url ()), false, true);
…
Hi,
The proposed fix has not been distributed yet (on the Wordpress site). We'll do it shortly. Apologies for this.
Now, the proposed fix prevents the user creation when he/she cancels registration when requested an email.
(which is the problem rep…
Hi,
Could you provide more information?
What platform are you using for your website?
How did you implement it in the checkout page?
Do you have a URL we could reach?
Thanks and sorry for all the questions.
Hi,
Not sure, but this looks like:
- you have another extension that uses vqmod, and defines avatars,
- our social login extension does not define any avatar, so the modified (vqmod) addCustomer issues the NOTICE.
So, one solution is to add code to…