2015-09-26, 04:03 PM
Hi guys,
On my website I have a side bar with the purpose of showing latest threads.
The code below doesnt seem to be working and I cannot get my head around why, any help is much appreciated.
My forum - theonlinegamingzone.com
On my website I have a side bar with the purpose of showing latest threads.
The code below doesnt seem to be working and I cannot get my head around why, any help is much appreciated.
My forum - theonlinegamingzone.com
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
lang.no_new_posts = "{$lang->no_new_posts}";
lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
<div class="sidebar" style="float: right; width: 250px;">
<script type="text/javascript">
jQuery(function(){
jQuery(".latestthreads").load("{$mybb->settings['bburl']}/portal.php .latestthreads_portal");
});
</script>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<strong>Latest Activity</strong>
</td>
</tr>
<tr>
<td style="{$collapsed['ths_e']} padding: 0;" id="ths_e">
<div class="latestthreads float_left"></div>
</td>
</tr>
</table>
<div class="theadend"></div>
</div>
<div class="forums" style="float: left; width: 724px;">
{$forums}
</div>
<br class="clear" /><br />
{$boardstats}
{$footer}
</body>
</html>