MyBB Community Forums

Full Version: portal not showing latest discussions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,


So I am back with another issue! lol... portal not showing latest discussions

settings:
[Image: download.png]

Template
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_announcements} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php?portal=1" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_announcements} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?portal=1&type=atom1.0" />
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="220">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
</td>
<td>&nbsp;</td>
<td valign="top">
{$announcements}
{$multipage}
</td>
<td>&nbsp;</td>
<td valign="top" width="220">
{$latestthreads}
</td>	
</tr>
</table>
{$footer}
</body>
</html>


portal_latestthreads_thread
<tr class="latestthreads_portal">
<td class="{$altbg}">
<strong><a href="{$mybb->settings['bburl']}/{$thread['threadlink']}">{$thread['subject']}</a></strong>
<span class="smalltext"><br />
<a href="{$thread['lastpostlink']}">{$lang->latest_threads_lastpost}</a> {$lastposterlink}<br />
{$lastpostdate}<br />
</span>
</td>
</tr>


portal_latestthreads
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$lang->latest_threads}</strong></td>
</tr>
{$threadlist}
</table>
<br />


Am I missing something?
Do you have any portal or sidebox related plugin installed?
revert portal_latestthreads_thread template to its original code & check !

[MyBB : Reverting Templates]
(2020-03-01, 02:10 AM)Omar G. Wrote: [ -> ]Do you have any portal or sidebox related plugin installed?
No I do not have plugins installed related to the portal or sidebox.
(2020-03-01, 02:17 AM).m. Wrote: [ -> ]revert portal_latestthreads_thread template to its original code & check !

[MyBB : Reverting Templates]
That didn't matter, but I got it to work and I must have been miss-reading how the settings work. It was a late night when I posted lol. Huh