A minimal amount of theme integration is necessary. Open the 'comment.php' file in the theme and add the following line where the Connect login button should be inserted:
<?php do_action('fbc_display_login_button') ?>
The reason for calling fbccommentlogin via doaction instead of directly is to avoid spewing errors if the plugin is disabled. It would be equally correct to directly call fbccomment_login() here.
As a simple example, the comments.php file on my blog looks like:
<?php if ( $user_ID ) : ?>
... ....
`
Note that the fbccommentlogin function should be called regardless of whether the user is currently logged into WP or not. It will DTRT.
See config.php and the Settings page for more configuration and customization options.




