The posts since last visit is displayed only for logged in users by default.
Removing "viewtopic" from the title is done in the mod with this code:
Code:#
#-----[ OPEN ]------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------
#
$page_title = $lang['View_topic'] .' - ' . $topic_title;
#
#-----[ REPLACE WITH ]------------------------------------
#
$page_title = $topic_title;
Removing SIDs for guests is done in the mod with this code:
Code:#
#-----[ OPEN ]------------------------------------------
#
includes/sessions.php
#
#-----[ FIND ]------------------------------------------
#
$SID = 'sid=' . $session_id;
#
#-----[ REPLACE WITH ]------------------------------------------
#
if ( $userdata['session_user_id'] != ANONYMOUS ){
$SID = 'sid=' . $session_id;
} else {
$SID = '';
}
The URL rewriting for html extensions is done with the code in the separate file that comes with the mod (titled: phpBB static URLs mod_rewrite 1.0.0).