Sorry about the delayed response to this. It looks like our social toolbar could be a little more discriminating about where it shows. Please make the following edit to our files which will fix the issue.
Edit the /components/com_jfbconnect/libraries/toolbar.php file. Around line 19, you'll see:
$this->enabled = !JFactory::getUser()->guest && JFBCFactory::config()->get('social_toolbar_enable') &&
JFactory::getUser()->authorise('jfbconnect.channels.post', 'com_jfbconnect');Update that so it looks like:
$this->enabled = !JFactory::getUser()->guest && JFBCFactory::config()->get('social_toolbar_enable') &&
JFactory::getUser()->authorise('jfbconnect.channels.post', 'com_jfbconnect') &&
JFactory::getApplication()->input->get('tmpl') != "component";Please note the remove of the ; and addition of && at the end of the 2nd line and, of course, the whole new 3rd line.
We plan to put this in the next release, but would love to hear your feedback on if it fixes things first as well.
Thanks!
-Melissa