Nein ich bin mir nicht sicher
Im Portal Template stand folgendes:
<!-- SCP_1_0 -->
Das ist die "Variable" für den Portalkalender... Durch die andere Art ist mir dies jedoch irgendwie nicht aufgefallen...
____________
Für die eigenen Boxen im integrierten Portal ist mir auch eine Lösung ohne deinen Link eingefallen...
1. Man muss ein neues Template erstellen. In meinem Beispiel habe ich es portal_navigation genannt
Code:
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead"><strong>Navigation</strong></td>
</tr>
<tr>
<td class="trow1">
<table id="menu" border="0" cellpadding="0" cellspacing="0" width="192" >
<tr>
<td ><a href="portal.php" >Home</a><br></td>
</tr>
<tr>
<td><a href="halloffame.php" >Hall Of Fame</a></td>
</tr>
</tr>
</table>
</td>
</tr>
</table></td></tr></table>
<br />
2. Muss man die portal.php editieren und zwar wie folgt:
Zuerst suche:
Code:
$templatelist = "portal_welcome,portal_welcome_membertext,portal_stats,portal_search,portal_whosonline_memberbit,portal_whosonline,portal_latestthreads_thread_lastpost,portal_latestthreads_thread,portal_latestthreads,portal_announcement_numcomments_no,portal_announcement,portal_announcement_numcomments,portal
und füge dahinter ein:
dann suche weiter nach:
Code:
// Search box
if($mybb->settings['portal_showsearch'] != "no")
{
eval("\$search = \"".$templates->get("portal_search")."\";");
}
Und füge darunter ein:
Code:
// Navigation
if($mybb->settings['portal_navigation'] != "no")
{
eval("\$navigation = \"".$templates->get("portal_navigation")."\";");
}
3. Öffne das Portal Template und füge an der Stelle wo die Box erscheinen soll folgendes ein: