So in my forum I am trying to add boardstats in the sidebar. I have put in the html:
Here is the board stats part alone:
But this is what I get:
https://gyazo.com/5aea227c0aa78673a889fc27ad4b76ef
It only loads the <strong> tags of the HTML, nothing else. I checked using inspect element. Also, I checked the DB and the HTML is all in the DB, but not coming out on the page.
<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 class="bodyimg">
{$header}
<div class="sidebar">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="tcat2" style="text-align:center;">
<div class="theadtitle2" style="float:none;"><a href="#"><center><i class="fa fa-microphone"></i> Announcements</center></a></div>
</td>
</tr>
<tbody>
<td class="trow1">
<div class="tgnewsticker">
<ul>
<li>Welcome to {$mybb->settings['bbname']}.</li>
<li>Please <a href="{$mybb->settings['bburl']}/member.php?action=register">Join/Register</a> to access our complete website.</li>
</ul>
</div>
</td>
</tbody>
</table>
<br />
<td class="thead" colspan="2"> <strong>Board Stats</strong> </td>
<tbody>
<tr>
<td class="trow1">Posts: {$stats['numposts']}</td>
<td class="trow1">Threads: {$stats['numthreads']}</td>
</tr>
</tbody>
</td>
{$teamonline}<br />
{$sidebar}<br />
</div>
<div class="forums">
{$forums}
</div>
{$boardstats}
{$footer}
</body>
</html>
Here is the board stats part alone:
<td class="thead" colspan="2"> <strong>Board Stats</strong> </td>
<tbody>
<tr>
<td class="trow1">Posts: {$stats['numposts']}</td>
<td class="trow1">Threads: {$stats['numthreads']}</td>
</tr>
</tbody>
</td><br />
But this is what I get:
https://gyazo.com/5aea227c0aa78673a889fc27ad4b76ef
It only loads the <strong> tags of the HTML, nothing else. I checked using inspect element. Also, I checked the DB and the HTML is all in the DB, but not coming out on the page.