MyBB.de Forum
Portalerweiterungen? - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Plugin-Diskussionen (https://www.mybb.de/forum/forum-38.html)
+--- Thema: Portalerweiterungen? (/thread-12192.html)

Seiten: Seiten: 1 2


RE: Portalerweiterungen? - eisbäronice - 31.01.2009

Ist soweit nur eine Veränderung der Tabellen in den Templates. Also Im Template portal:

Code:
<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="44%">

{$latestthreads}
</td>


<td valign="top" width="180">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}


</td>
<td valign="top">
{$announcements}
</td>
</tr>
</table>
{$footer}
</body>
</html>

und im Template portal_latestthreads_thread:

Code:
<tr>
<td class="{$altbg}">


<table width="100%">
<tr>

<td width="42%">
<strong><a href="{$mybb->settings['bburl']}/{$thread['threadlink']}">{$thread['subject']}</a></strong>
<span class="smalltext"></td>

<td width="25%">
<em><small>{$lang->latest_threads_lastpost}</small></em><font size="1"> {$lastposterlink}</font><br />
<small>{$lastpostdate} {$lastposttime}</small></td>

<td width="26%">
<small><strong>&raquo; </strong>{$lang->latest_threads_replies} {$thread['replies']}<br />
<strong>&raquo; </strong>{$lang->latest_threads_views} {$thread['views']}</td></small>
</span>

</table>
</td>
</tr>

Gruß
Viktor


RE: Portalerweiterungen? - Michael - 31.01.2009

Suche in der Datei portal.php nach:
PHP-Code:
eval("\$threadlist .= \"".$templates->get("portal_latestthreads_thread")."\";"); 
Darüber einfügen:
PHP-Code:
$threadstarter build_profile_link($thread['username'], $thread['uid']); 
Danach kannst du {$threadstarter} im Template portal_latestthreads_thread benutzen.


RE: Portalerweiterungen? - eisbäronice - 31.01.2009

Ich danke dir =)