Should be. In the next release of JFBConnect, it will be much simpler, as we're moving to a new Login module that works with our LinkedIn extension as well. The template files will be much cleaner there.. but, not out right now
To add the link, you'd want to modify the /modules/mod_jfbclogin/tmpl/default.php file. The top half of the file is the login form, the bottom half is the logout portion. Around line 194, you should see the following, which is the start of the logout button:
<?php
$showLogoutButton = $params->get('showLogoutButton');To add the Account Maintence Link, you'd simply want to add it directly above that, so altogether, it will look like:
<a href="<?php echo JRoute::_('index.php?page=account.index&option=com_virtuemart'); ?>"Account Maintenance</a><br/>
<?php
$showLogoutButton = $params->get('showLogoutButton');The JRoute call in there simply creates an SEF version of the URL, if you have that enabled. You should be able to remove that portion just fine as well and create a normal link.
When 4.1 comes out later this year, you'll need to do it again with the SCLogin module. It should be simpler, but of course if you run into issues, we're here to help!
Thanks, and good luck,
Alex