Is it possible use ssi_menubar without some buttons? Lets say i dont want calendar button appear in main site.
modify index.template.php, template_menu().
if (defined('SMF') && SMF != 'SSI')
// calender button here
Hmmm, how about only in one page? That erases that button from all ssi pages.
Something like this:
if ($_SERVER['REQUEST_URI'] != '/full/path/to/ssi/powered/file.php')
Thanks, i must try that.