I found that google's sso button is in the edit in the profile, but after clicking it shows not found.Currently I am using ssl reverse proxy, do I need to configure redirects?
52ca1b6b-4a7a-4b25-ad6c-d590f1811140-image.png
ecfb416c-049c-4296-a5c1-644db2898f46-image.png
Solved Reorder Social Login Icons on Login Page
-
What is the method to change the displayed order of the social login icons on the login page?
Thank you.
-
strategies.push({ name: 'facebook', url: '/auth/facebook', callbackURL: '/auth/facebook/callback', icon: constants.admin.icon, scope: 'email, user_friends' });
Right now you
push
the items into the stack. You canunshift
instead, or put them in a specific spot in the array. If you're talking about re-ordering existing SSO apps without modifying code, then there isn't a way at this point in time -
-
@pichalite Thank you, that worked well. So neat that just changing the order on the plugin page effects how things are displayed within the forum.
Now the Facebook "f" is before the Google "G+"!
-
-
@pichalite Thanks for the quick save