miled / wordpress-social-login

WordPress Social Login
http://miled.github.io/wordpress-social-login/
MIT License
398 stars 237 forks source link

Popup mode not working #357

Closed jeffsmonteiro closed 3 years ago

jeffsmonteiro commented 4 years ago

When I try to uuse dialog mode as popup, I receive an error message from Bauncer. This happen because on line 30 of the widget.js the method window.open is passing the param provider without "&" to concatenate the url in the right way.

To fix:

window.open( popupurl + '&provider=' + provider, 'hybridauth_social_sing_on', 'location=1,status=0,scrollbars=0,height=' + height + ',width=' + width + ',top=' + top + ',left=' + left);