A quick note - in YAFB's /fbb/hook_usercp_nav_complete.php, this line of code:
PHP Code:
$template_hook['usercp_navbar_bottom'] = $templater->render();
...should be:
PHP Code:
$template_hook['usercp_navbar_bottom'] .= $templater->render();
...as otherwise, it can wipe out other modifications' menu options in the User Control Panel menu if they use the same template hook (which most of them do).
An alternative fix is to set any plugins which use the usercp_navbar_bottom template hook to execute
after YAFB's User CP menu plugin, but that's kind of a bandaid fix.