If you use a directory name for your IPB besides "forums" you will need to change the parts of the /mkportal/templates/default/tpl_main.php javascript in red below to reflect your forum path.
BACKUP YOUR FILES FIRST!!!
[size=13]1)-----------[/size]
FIND:
[quote name='/mkportal/templates/default/tpl_main.php']
<script language="JavaScript" type="text/javascript" src="{$js}">[/quote]
ADD BELOW:
[quote name='/mkportal/templates/default/tpl_main.php']<script language='JavaScript' type="text/javascript">
<!--
function buddy_pop() { window.open('forums/index.{$ibforums->vars['php_ext']}?act=buddy&s={$ibforums->session_id}','BrowserBuddy','width=250,height=500,resizable=yes,scrollbars=yes'); }
function chat_pop(cw,ch) { window.open('forums/index.{$ibforums->vars['php_ext']}?s={$ibforums->session_id}&act=chat&pop=1','Chat','width='+cw+',height='+ch+',resizable=yes,scrollbars=yes'); }
function multi_page_jump( url_bit, total_posts, per_page )
{
pages = 1; cur_st = parseInt("{$ibforums->input['st']}"); cur_page = 1;
if ( total_posts % per_page == 0 ) { pages = total_posts / per_page; }
else { pages = Math.ceil( total_posts / per_page ); }
msg = "{$ibforums->lang['tpl_q1']}" + " " + pages;
if ( cur_st > 0 ) { cur_page = cur_st / per_page; cur_page = cur_page -1; }
show_page = 1;
if ( cur_page < pages ) { show_page = cur_page + 1; }
if ( cur_page >= pages ) { show_page = cur_page - 1; }
else { show_page = cur_page + 1; }
userPage = prompt( msg, show_page );
if ( userPage > 0 ) {
if ( userPage < 1 ) { userPage = 1; }
if ( userPage > pages ) { userPage = pages; }
if ( userPage == 1 ) { start = 0; }
else { start = (userPage - 1) * per_page; }
window.location = url_bit + "&st=" + start;
}
}
//-->
[/quote]
[size=13]2)-----------[/size]
FIND:
[quote name='/mkportal/blocks/forumnav.php']$content = "";
$content = "
";[/quote]
REPLACE WITH:
[quote name='/mkportal/blocks/forumnav.php']$content = "";
if(!$ibforums->member['id']) {
$content = "
}
else {
$content = "
[size=13]3)-----------[/size]
FIND:
[quote name='/mkportal/lang/English/lang_global.php']// ----------------------------------------------------
$langmk['group_forum'] = "Forums Menu";
// ----------------------------------------------------
$langmk['m_newpost'] = "New posts";
$langmk['m_search'] = "Search";
$langmk['m_users'] = "Users";
$langmk['m_calendar'] = "Calendar";
$langmk['m_help'] = "Help";[/quote]
ADD AFTER:
[quote name='/mkportal/lang/English/lang_global.php']$langmk['m_assistant'] = "My Assistant";[/quote]
[size=13]4)-----------[/size]
Upload your "atb_assistant.gif" into the /mkportal/templates/Forum_Skin/images/ directory.













