|
Quote: Do you know how to display teaser text under the topics in the forums, and not just the mainlastposts? That would require rewriting stuff in php/mysql. The slow way to do it is make a query that pulls the teaser with a join statement between the topics and posts tables. The faster way is to add a teaser row in topics and update the teaser every time someone posts. Then showing the teaser after the query is trivial.
Quote: Also, any idea how you can also list the category of the post with the teaster text in mainlastposts? Change the sql pulling statement to a join with the forums table on forum_id and then get the title from there.
|