ThorstenA
01-03-2008, 10:00 PM
This product puts all UserCP informations (new subscribed threads, friend requests ...) on FORUMHOME without any style changes. Just install product, everything runs automatic. There are no template or other things changed. Enjoy ;)
This is for all who like to do this product on their own handmade :)
Open usercp.php
Change $phrasegroups to $phrasegroups[]. Same for $specialtemplates, $globaltemplates and $actiontemplates.
Delete everything between
// ############################### start subscribed forums ###############################
and
// ############################### start new subscribed to threads ##############################
Copy everything from
// ################### PRE-CACHE TEMPLATES AND DATA ######################
to
($hook = vBulletinHook::fetch_hook('usercp_complete')) ? eval($hook) : false;
(optional) Put this code before the last line:
if(!$show['threads'])
{
$template_hook[usercp_main_pos2] .= '<div style="display:none">';
$template_hook[usercp_main_pos3] .= '</div>';
}
Create new plugin on hook "forumhome_start" called "USERCP information on FORUMHOME".
Put this code inside:
if($show['member'])
{
Here comes the copied code from #4
$vbulletin->templatecache['FORUMHOME'] = str_replace('$navbar','$navbar'.fetch_template('US ERCP'),$vbulletin->templatecache['FORUMHOME']);
}
Place this code into hook: init_startup
if(THIS_SCRIPT == 'index')
{
$phrasegroups[] = 'user';
$phrasegroups[] = 'infractionlevel';
}
Done
This is for all who like to do this product on their own handmade :)
Open usercp.php
Change $phrasegroups to $phrasegroups[]. Same for $specialtemplates, $globaltemplates and $actiontemplates.
Delete everything between
// ############################### start subscribed forums ###############################
and
// ############################### start new subscribed to threads ##############################
Copy everything from
// ################### PRE-CACHE TEMPLATES AND DATA ######################
to
($hook = vBulletinHook::fetch_hook('usercp_complete')) ? eval($hook) : false;
(optional) Put this code before the last line:
if(!$show['threads'])
{
$template_hook[usercp_main_pos2] .= '<div style="display:none">';
$template_hook[usercp_main_pos3] .= '</div>';
}
Create new plugin on hook "forumhome_start" called "USERCP information on FORUMHOME".
Put this code inside:
if($show['member'])
{
Here comes the copied code from #4
$vbulletin->templatecache['FORUMHOME'] = str_replace('$navbar','$navbar'.fetch_template('US ERCP'),$vbulletin->templatecache['FORUMHOME']);
}
Place this code into hook: init_startup
if(THIS_SCRIPT == 'index')
{
$phrasegroups[] = 'user';
$phrasegroups[] = 'infractionlevel';
}
Done