Is it possible to use the the facebook login plugin with a custom UI button on my side? I dont want to use the standard FB plugin that comes with the plugin.
I want to be able to click a custom button and have it do the same action, launch pop/modal to sync.
Any help would be great.
Sure you can! But you’ll have to do some JavaScript coding for it. If you use the Facebook JavaScript SDK you’ll be able to log your users into your website using any element that you can trigger a JavaScript function with.
Check out the FB.login() function :
This function will initiate a login popup for users that have not yet logged in and request their email addresses.
It’s more work than just pasting the plugin, but if you want to customize the login features then this is the way you will accomplish it.