Miled
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] Announcing new upcoming release@mrtester1 1) should be fixed in 3.0.4
Forum: Plugins
In reply to: [WordPress Social Login] Reddit and Discord issuesBoth are actually issues with scope. I just released a hotfix that hopefully will resolve it.
Forum: Plugins
In reply to: [WordPress Social Login] Announcing new upcoming release@tashaongsm it’s now fixed.
@wrhull yes, redirect urls for enabled identity providers have changed. that’s actually the breaking change I’m talking about in original post.
Forum: Reviews
In reply to: [WordPress Social Login] non-responsive to simple questionHere’s your “late’ reply, ig:
I’ve no clue. Give it a try and report back,
hue.
Forum: Plugins
In reply to: [WordPress Social Login] Error when logging with FbFacebook, of course.
A possible fix would be to change requested permissions using a filter:
function wsl_change_default_permissons( $provider_scope, $provider ) { if( 'facebook' == strtolower( $provider ) ) { $provider_scope = 'email, public_profile'; } return $provider_scope; } add_filter( 'wsl_hook_alter_provider_scope', 'wsl_change_default_permissons', 10, 2 );
Let me know if this works for you.
Forum: Plugins
In reply to: [WordPress Social Login] Can’t Get Existing Provider User ID?These are a couple of short codes that may help you.
https://gist.github.com/miled/f751410e2dfd827ac6ded2d47168aa22
First function defines a short tag to retrieve the steamID of connected user: [wsl_steam_identifier]
The second returns his current state: [wsl_steam_state]Keep in mind that wsl_steam_state will connect to steam API each time you use it, so don’t abuse it.
Forum: Plugins
In reply to: [WordPress Social Login] FB login failsFacebook now requires PHP 5.4 or above. Check with your webhost whether you can upgrade to newer version.
Forum: Plugins
In reply to: [WordPress Social Login] What the changelog of V 2.3.3?Basically it updates Facebook PHP SDK to 5.4.4 and also update few translation files.
Forum: Plugins
In reply to: [WordPress Social Login] Error in login after updateI believe that’s an issue with PHP version which now requires 5.4 for Facebook.
Forum: Plugins
In reply to: [WordPress Social Login] Don’t work Facebook social login (error 500)@heyrobot, Would you share how did you fix the timezone issue, you know, for prosperity in case someone else runs in it.
@irlandacenter, Latest WSL version should show 2.3.3 now. Try re updating the plugin.
As a side note, sharing system information is better done privately through mail or pastebin, or something similar.
Forum: Plugins
In reply to: [WordPress Social Login] Don’t work Facebook social login (error 500)I think I figured out the issue with including files, and I just committed a fix. Hopefully it works.
Forum: Plugins
In reply to: [WordPress Social Login] Don’t work Facebook social login (error 500)Would someone send me his WordPress environment information by _mail_?
From admin section: WP Social Login > Tools (cog icon on top right) > System information
Forum: Plugins
In reply to: [WordPress Social Login] Don’t work Facebook social login (error 500)Seems like Facebook autoloader is not working as intended in your WordPress environment.
I committed a pre-include check for that file for now, and I’ll try to look into it further when I get the chance.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook new API 2.3Reason is that WSL currently using an old branch of Facebook SDK, and I think I’ll be able to commit a fix for it to work with the newer version within incoming days.
- This reply was modified 7 years, 8 months ago by Miled.