Notice that removing cookies from the web site before attempting to login actually returns a blank page.
This suggests a PHP error.
Usually, this will log something.
When this fails, but another login attempt is made, then the redirect to the homep…
Hi,
Thanks. Indeed, the login/registration process does not complete.
Do you have any logs in your Zencart folder (in the logs directory)?
Also, is there any specific extension you are using in your installation (specifically, some that relate to r…
Hi,
You can change this setting in developers.facebook.com, Products: Facebook Login, then there is a setting with that name (Valid OAuth redirect URI).
Also, what else is checked on this page (Facebook Login)?
Hope this helps.
Hi,
Seems your site is setting default pictures for users. Is this intended?
You can try to trace what is happening by adding this to the theme's functions.php, and by checking the logs:
add_filter ('get_avatar', 'check_avatar', 10, 5); function c…
Hi,
Right now, the only possibility is to fetch all your users and search through the results.
We could consider exposing this to the API though.
Regards
Hi,
No problem.
Tested the scenario you described (although not waited a few days in between logins), and the picture profile did get updated in profile and in comments after changing it in a Twitter profile.
Also the example blank picture is not bl…
Hi,
There is no trace of the social icons on the login page (maybe disabled?).
On a mobile, is it only Facebook that is causing occasional problems?
If so, try setting https://candlewithcare.api.oneall.com/ on the valid Oauth redirect URL.
Regards
Hi,
The following will abort the registration.
Place it inside your theme's functions.php.
add_action('oa_social_login_action_before_user_insert', 'someabort', 10, 2); function someabort() { wp_redirect(home_url()); exit; }Regards