MyBB Community Forums

Full Version: Plugin for Announcements or latest threads Mybb 1.6.8 portal page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Big mistake on my part, i apologize.

I had the wrong FID input into the box.
Went back and check and had my topic FID instead of the individual forum section.

Another question, it has recent threads at the top and my announcements at the bottom/below them, is there anyway to switch those around to have announcements above recent threads instead?
yes, in the portal template I posted you can just swap the position of announcements and latest threads, like so:

<html>
 <head>
 <title>{$mybb->settings['bbname']}</title>
 {$headerinclude}
 </head>
 <body>
 {$header}
 <table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
 <tr><td valign="top" width="200">
 {$welcome}
 {$pms}
 {$search}
 {$stats}
 {$whosonline}
 </td>
 <td>&nbsp;</td>
 <td valign="top">
 {$announcements}
 {$latestthreads}
 </td>
 </tr>
 </table>
 {$footer}
 </body>
 </html>
Thank you so much LeeFish, you've been a great help.

Another quick question if you could possibly help me LeeFish or anyone else, how can i make it to where it doesn't have the users avatar on the portal page when it posts the announcement?

Example: [Image: mruYDr.png]

I want it to post the announcement like so, except without the Avatar Image next to it.

Disregard my last message, i figured it out.
Just had to remove the, '{$avatar}', in the portal_announcement.

Thanks again!
Not showing in admin panel..how to fix it?
(2012-11-12, 10:59 AM)KingCupid Wrote: [ -> ]Not showing in admin panel..how to fix it?

what is not showing in the admin panel?
Pages: 1 2