Most of the modules have tags that you can use for them, like { JFBCLike} (no spaces). You can insert these directly into template files or modules to be output, and the JFBCSocial (or system) plugins will replace the tags with the correct module. For more information about the available tags, see:
www.sourcecoast.com/extensions/jfbconnec...ation-guide?start=11
If that doesn't work, you would need to add the Joomla code to actually fetch any modules for that position and show them. You can do so like:
jimport( 'joomla.application.module.helper' );
$modules = JModuleHelper::getModules( 'jspt_group1');
$attribs['style'] = 'xhtml';
foreach ($modules as $module)
echo JModuleHelper::renderModule( $module, $attribs );
With that, you can simply assign whatever modules (not just JFBC ones) to the jspt_group1 module position (you'll need to type this in to the position assignment box, it won't be in the drop-down), and those modules will automatically appear on the page.
Hope this helps, but if not, let us know. We're slowly moving all the JFBC modules to have tags for easier insertion, just so you know
Thanks!