There used to be tutorial on how to do it with extreme styles mod without modifying any php files, hovewer that tutorial didn't work properly with topics that had polls so here is better tutorial but it requires minor changes in php files.
Open viewforum.php, find this:
- Code: Select all
'TOPIC_TYPE' => $topic_type,
- Code: Select all
'TOPIC_TYPE_NUM' => $topic_rowset[$i]['topic_type'] + 1,
- Code: Select all
<!-- BEGIN topicrow -->
- Code: Select all
<!-- DEFINE $LAST_TYPE = 1 -->
- Code: Select all
<!-- IF topicrow.TOPIC_TYPE_NUM < $LAST_TYPE -->
<!-- DEFINE $LAST_TYPE = topicrow.TOPIC_TYPE_NUM -->
<tr>
<th colspan="2" align="center" height="25" nowrap="nowrap"> {L_TOPICS} </th>
<th width="50" align="center" nowrap="nowrap"> {L_REPLIES} </th>
<th width="100" align="center" nowrap="nowrap"> {L_AUTHOR} </th>
<th width="50" align="center" nowrap="nowrap"> {L_VIEWS} </th>
<th align="center" nowrap="nowrap"> {L_LASTPOST} </th>
</tr>
<!-- ELSEIF topicrow.TOPIC_TYPE_NUM > 1 -->
<!-- DEFINE $LAST_TYPE = 2 -->
<!-- ENDIF -->



