Claude
Forum Replies Created
-
Forum: Reviews
In reply to: [Social Login] Great!!!Thank you ??
Thank you very much!
Forum: Reviews
In reply to: [Social Login] NO LONGER ALLOWED BY FACEBOOKHello,
ok, I can see that the ticket SUPPORT-10434 was answered four days ago. If you follow the Facebook setup guide in your OneAll account, then it should work ouf of the box.
We are waiting for your answer to ticket SUPPORT-10434 to help you fix the issue.
Best Regards,
Forum: Reviews
In reply to: [Social Login] NO LONGER ALLOWED BY FACEBOOKHello,
we have tens of thousands websites and apps using our services and we are working closely with Facebook developers. Are you sure you meant our plugin? Do you have a support ticket number? I will check why it has not been answered in time. Usually tickets are answered on the same day.
Best Regards,
Forum: Plugins
In reply to: [Social Login] Logging in with DiscordHello,
you can use an action like this to save the username/discriminator:
//Handle data retrieved from a social network profile function oa_social_login_store_extended_data ($user_data, $identity) { if ($identity->source->key == 'discord') { $account = array_shift($identity->accounts); if (isset ($account->username) { $parts = explode ('#', $account->username); if (count ($parts) == 2) { update_user_meta ($user_data->ID, 'discord_username', $parts[0]); update_user_meta ($user_data->ID, 'discord_discriminator', $parts[1]); } } } } //This action is called whenever Social Login adds a new user add_action ('oa_social_login_action_after_user_insert', 'oa_social_login_store_extended_data', 10, 2);
Please note that I haven’t tested the code, but it should do the trick.
Also seen here:
https://support.oneall.com/forums/discussion/8064/having-trouble-storing-the-discord-id-after-a-user-signs-in-with-discord-wordpressBest Regards,
- This reply was modified 4 years, 7 months ago by Claude.
Forum: Reviews
In reply to: [Social Login] Decent, though needs some updating.Hello,
thank you very much for your review. Sorry for the outdated guides. If you can tell us which were outdated, we will fix them right away ??
Best Regards,
Forum: Plugins
In reply to: [Social Login] Google sign-in: edit front-end ref to ‘oneall.com’?Hello,
technically speaking it’s unfortunately not possible to change that mention.
This said, many users know OneAll and so this is not really a disadvantage ??Best Regards,
Forum: Plugins
In reply to: [Social Login] Woocommerce Checkout Reg with Facebook – Names missingHello,
WooCommerce probably saves the first and lastname in custom fields that Social Login is not aware of.
What you could try is a hook like this:
https://docs.oneall.com/plugins/guide/social-login-wordpress/#3bThe example is for BuddyPress, but for WooCommerce it should be similar.
xprofile_set_field_data ('First Name', $user_data->ID, $identity->name->givenName); xprofile_set_field_data ('Last Name', $user_data->ID, $identity->name->familyName);
In these values you have the data:
$identity->name->givenName $identity->name->familyName
You then need to replace
xprofile_set_field_data
by the function that saves the data for WooCommerce.Do not hesitate to write another post if you are stuck, I will then have a closer look.
Regards,
Forum: Plugins
In reply to: [Social Login] How to change the default placeholder emailHello,
your users can simply open their WordPress profile page and update their profile (including the email address) there.
Best Regards,
Hello,
yes, you can simply install our our SSO plugin for WordPress and implement SSO on your website using our implementation guide available here:
https://docs.oneall.com/services/implementation-guide/single-sign-on/
The plugin and your custom implementation will use the same SSO backend.
Do not hesitate to contact us if you have any questions or need help with the implementation.Best Regards,
Forum: Reviews
In reply to: [Social Login] Wide choice of social loginsThank you very much ??
Forum: Plugins
In reply to: [Social Login] PSI low score – imageHi eddie,
we will release a new version this week and also work on that issue for the new release. Thank you for your feedback!
Best Regards,
Forum: Plugins
In reply to: [Social Login] support for Sign In With AppleHello,
Apple will be included in the new version released by the end of the week!
Best Regards,
Forum: Plugins
In reply to: [NSFW] [Social Login] Need help with thisHello,
this message is in fact wrong:
The following resources have identical contents, but are served from different URLs.
The first library displays content in english and the second one in greek. They are also served in a compressed form and cached. So the additional content is actually 12kb loaded once ??
Best Regards,
- This reply was modified 4 years, 8 months ago by Claude.
Forum: Plugins
In reply to: [Social Login] PSI low score – imageHi Eddie,
when I asked for the theme, I in fact meant the Social Login icon theme.
Are you using these icons?
https://secure.oneallcdn.com/img/api/themes/iconsets/flat_w64_h64_w_b_v1.pngIf you can post a link to your website, I will have a closer look.
Best Regards,