Reversing the order of replies to forum discussion (newest first)
Using Jamroom
in your Forum item_detail.tpl page you can reverse the output order of the items by using the array_reverse() function
ACP -> MODULES -> PROFILE -> FORUM -> TEMPLATES -> item_detail.tpl -> MODIFY
locate the section that starts the
{foreach loop for all of the forum posts. Around line 40 ish. Probably looks like this:
<div class="block_content">
{foreach $_items as $_itm}
.......
flip the order of that array by adding this one line:
<div class="block_content">
{$_items = array_reverse($_items)}
{foreach $_items as $_itm}
.......