Hi,
The plugin JS llibrary is not included in the login page.
Maybe a custom theme does not add the required JS that the plugin needs.
If you are using a custom theme, could you send us (by email) the file header.tpl for your theme?
Thanks.
Hi,
This error is caused by Facebook app settings.
Try the following settings in your developers.facebook.com settings:
Basic:
Web site: http://sunkoiwish.api.oneall.com/
Advanced:
Valid OAuth redirect URIs: same as web site url (http://sunkoiwish…
Hi,
Social Login is not integrated with zoho forms.
Social Login can be included on any site (by creating an app and including some JS and html), however, it is not clear how open zoho forms is to custom changes. It does not seem possible.
So, short…
Hi,
Did you set this plugin setting:
If the user's social network profile has an avatar, should this avatar be used as default avatar for the user?
Regards.
Hi,
To fill the billing address when someone registers with social login, you can add the following hook into your theme's functions.php:
//This action is called whenever Social Login adds a new user add_action ('oa_social_login_action_after_user_i…
Hi,
Yes, our API requires a non-empty body part, but not the enclosing text part.
So, if the message is empty, then do not include a text part and it should work.
Regards.
You can try (not sure without context):
$data->user->identity->photos
which is an array of photos.
So:
$data->user->identity->photos[0]->value
is the link to the first photo.
$data->user->identity->photos[0]->size
gi…
Hi,
One way is to log a dump of the $identity variable, such that you can inspect it without disturbing your web site.
So, in your action hook (the action hook described above), add:
error_log(print_r($identity, true));
Then, you need to point to w…