MyBB.de Forum
Formatierungen in templates - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.6.x (https://www.mybb.de/forum/forum-58.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-59.html)
+---- Thema: Formatierungen in templates (/thread-28544.html)



Formatierungen in templates - Kalle - 12.10.2013

Hallo
Ich habe folgenden Code:
Zitat:<!-- start: portal_whosonline -->
<div class="box-tborder">
<div class="box-thead"><strong>Benutzer Online</strong></div>
<div class="box-trow1">
<span>
Jetzt sind <b>11</b> Benutzer online<br /><strong>&raquo;</strong> davon: <b>1</b> Mitglieder <br /><b>&raquo;</b> und: <b>10</b> Gäste<br /><a href="http://www.awardcafe.de/user-1.html" title="der Benutzername"><img src="images/kaheti.png" width="48" height="10" alt="administrator" /><span style="color:#519000; display:none;"><em>Kaheti</em></span></a> ist angemeldet
</span>
</div>
</div>
<br />
<!-- end: portal_whosonline -->


...und suche diese B-Tags. Im Template portal_whosonline sind sie nicht.

darin sieht's so aus:

Zitat:<div class="box-tborder">
<div class="box-thead"><strong>{$lang->online}</strong></div>
<div class="box-trow1">
<span>
{$lang->online_users}<br /><strong>&raquo;</strong> {$lang->online_counts}<br />{$onlinemembers} ist angemeldet
</span>
</div>
</div>

Wo also sind diese B-tags zu finden ?

vielen Dank im Voraus

nette Grüsse

Kalle


RE: Formatierungen in templates - frostschutz - 12.10.2013

Code:
./inc/languages/english/portal.lang.php:47:$l['online_users'] = "There are currently <b>{1}</b> online users.";
./inc/languages/english/portal.lang.php:48:$l['online_counts'] = "<b>{1}</b> Member(s) | <b>{2}</b> Guest(s)";



RE: Formatierungen in templates - Kalle - 12.10.2013

Herzlichen Dank ...da seh ich gleich mal nach.


Edit: das war's !! Danke

nette Grüsse

Kalle