Hi!
I want to display the latest (active) threads from certain subforums at my forums index. I'm using this code:
PHP Code:
<td valign="top" width="300"><img border="0" src="images/aangepast/news.gif"> <a href="/forum/forumdisplay.php?f=74">Programma updates</a>:<br><br><if condition="$vbulletin->options['externaljs']">
<!-- show latest programma update -->
<div class="smallfont">
<script type="text/javascript" src="external.php?forumids=74&type=js"></script>
<script language="" type="text/javascript">
<!--
for (x = 0; x < 3 && x < threads.length; x++)
{
document.writeln("<a href=\"showthread.php?t="+threads[x].threadid+"\">"+threads[x].title+"</a><br />");
}
//-->
</script></div>
<!-- show latest programma update -->
</if></td>
</tr>
</table>
Although the threads are displayed fine, one of the forums doesn't receive new threads. It only receives new posts. Thus resulting in displaying no threads at all at my index.
Is there an option to also display threads that have received a reply recenly?
Thanks in advance.