Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
There you go, another bit of my appreciation
Thank you much guys!
I would like to see the kind of support you guys provide here in some other forums.
You guys are the best, no kidding.
<!-- IF S_TSRAT_ENABLE -->
<!-- INCLUDE recent_active_body.html -->
<!-- ENDIF -->
<!-- INCLUDE forumlist_body.html -->
<!-- ENDIF -->
<!-- IF S_TSMVT_ENABLE or S_TSMRT_ENABLE or S_TSMAU_ENABLE or S_TSMAF_ENABLE or S_TSLVB_ENABLE or S_TSLRU_ENABLE -->
<!-- INCLUDE top_stats_body.html -->
<!-- ENDIF -->
And if you want it on viewtopic
Open styles/prosilver/template/viewtopic_body.html
<!-- IF S_TSRAT_ENABLE -->
<!-- INCLUDE recent_active_body.html -->
<!-- ENDIF -->
<!-- IF S_TSMVT_ENABLE or S_TSMRT_ENABLE or S_TSMAU_ENABLE or S_TSMAF_ENABLE or S_TSLVB_ENABLE or S_TSLRU_ENABLE -->
<!-- INCLUDE top_stats_body.html -->
<!-- ENDIF -->
And now take steve's hook and place it in includes/hooks
includes.zip
Don't forget to purge the board.
You do not have the required permissions to view the files attached to this post.
/**
* Only register the hook for normal pages, not administration pages.
*/
if (!defined('ADMIN_START'))
{
$phpbb_hook->register('phpbb_user_session_handler', 'top_stats');
}