In /templates/default/postlist.tpl find:
<a href="{ubb url="ubb=`$mode`&Number=`$postrow[topic].lastpostid`#Post`$postrow[topic].lastpostid`" title=$postrow[topic].SubjectClean}" rel="nofollow">{$postrow[topic].time}</a>
Replace with:
<a href="{ubb url="ubb=`$mode`&Number=`$postrow[topic].lastpostid`" title=$postrow[topic].SubjectClean}" rel="nofollow">{$postrow[topic].time}</a>
You can do the same in activetopics.tpl with
<a href="{ubb url="ubb=show`$display`&Number=`$topics[row].post_id`#Post`$topics[row].post_id`" title=$topics[row].post_subject}">{$topics[row].post_subject}</a>Replace With:
<a href="{ubb url="ubb=show`$display`&Number=`$topics[row].post_id`" title=$topics[row].post_subject}">{$topics[row].post_subject}</a>Then the main page/category page too, really just remove the section starting with a # (a bookmark) to the ending quote using the above two as a reference.