The MKPortal install has instructions for modifying the IPB functions.php file. This is where you change the breadcrumb "home/portal" link to say what you want it to instead of the default "MK Portal".
This is the MKPortal breadcrumb addition:
forums/sources/functions.php said:
$nav = $skin_universal->start_nav();
//-- mod_mkportal begin
global $MK_PATH;
if (strpos($MK_PATH, "../") === 0) {
$nav .= "vars['board_url']).(substr($MK_PATH, 2))."index.php'>MK Portal"."<{F_NAV_SEP}>";
}
else {
$nav .= "MK Portal"."<{F_NAV_SEP}>";
}
//-- mod_mkportal end
//-- mod_mkportal begin
global $MK_PATH;
if (strpos($MK_PATH, "../") === 0) {
$nav .= "vars['board_url']).(substr($MK_PATH, 2))."index.php'>MK Portal"."<{F_NAV_SEP}>";
}
else {
$nav .= "MK Portal"."<{F_NAV_SEP}>";
}
//-- mod_mkportal end
-=DKC=-













