The quickreply functionality was added to persona by @julian here you should be able to apply to slick I guess. Keep in mind in v3.0 this functionality moved to core so all themes can add quick reply easier. https://github.com/NodeBB/NodeBB/blob/bootstrap5/public/src/modules/quickreply.js.
Reorder Social Login Icons on Login Page
Solved
Technical Support
-
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 -