Hey oki,
I was thinking the same thing, and decided to take action myself. With no knowledge of php whatsoever, I set out to do what seemed the impossible. But with a little figuring things out, I modified the latest bots (like anyone is ever going to use that) to display the latest posts. So basically open latest_bots.html in styles/yourstyle/template/portal/block in wordpad or whatever you use and replace everything with this:
Code: Select all
<!--version $Id: latest_bots.html 216 2008-04-29 07:23:22Z kevin74 $ //-->
<table class="tablebg" cellspacing="1" width="100%">
<tr>
<th>Latest Posts</th>
</tr>
<tr class="row1">
<td>
<!-- BEGIN latest_topics -->
<img src="portal/images/post.gif" height="15" width="15" alt="" /><a href="{latest_topics.U_VIEW_TOPIC}" title="{latest_topics.FULL_TITLE}">{latest_topics.TITLE}</a><br />
<!-- END latest_topics -->
</td>
</tr>
</table>
<br />
When you activate latest bots, it will put this up instead, which shows the latest topics. Of course, I take no credit whatsoever as I simply synthesized the recent topic center block and the latest bots side block.
Also this code:
Code: Select all
<img src="portal/images/post.gif" height="15" width="15" alt="" />
is for having a little icon beside each of your posts. I thought that it was kind of cluttered looking, so adding a little icon made it MUCH nicer in my opinion. Once again, this was ripped from the latest members. You just need a 15x15 gif file called post.gif in portal/images/post.gif
The code that says:
is obviously the title of the block.
I wish I could add who wrote it and such, but that is beyond my skill. I literally started all this portal stuff yesterday, and have zero experience with php. So if I figure things out, I'll try and update this post and let you know.
MAJOR PROBLEM: The big chunky recent topics must still be in the forum for this to function, I pushed it to the bottom. If anyone knows how to do this without the big one, please post!