Hallo, Gast! (Registrieren)

Wir wünschen allen Besuchern frohe Ostern!

Letzte Ankündigung: MyBB 1.8.37 veröffentlicht (04.11.23)


Benutzer, die gerade dieses Thema anschauen: 1 Gast/Gäste
Counter einfügen
#1
Hallo,

wie kann ich so einen Code (Counter für das Forum) in mein Forum einfügen so das er auf der Startseite unten angezeigt wird?
Geht es das es das bei jedem Style dann auf der Startseite anzeigt?


So ein Code:
Zitat:<script type="text/javascript" src="http://www.ipcounter.de/count_js.php?u=50147887&amp;color=red"></script> <noscript><a href="http://www.ipcounter.de/stats.php?u=50147887" target="_blank"><img src="http://www.ipcounter.de/count.php?u=50147887&amp;color=red" alt="IPCOUNTER.DE - Kostenloser Live Counter!" border="0" /></a></noscript>
Zitieren
#2
Füge ihn im Template "index" an der gewünschten Stelle ein. Er wird nur in den Themes angezeigt für die das Template-Set gilt.
[Bild: banner.png]

Bitte die Foren-Regeln beachten und im Profil die verwendete MyBB-Version angeben.
Zitieren
#3
Wo genau muss ich den da einfügen?
Kenn mich damit nicht so gut aus
Zitieren
#4
Wo genau willst du den Counter haben?
Denken Hilft!
...und wer nicht denken will fliegt raus!
Zitieren
#5
Gondlar schrieb:Wo genau willst du den Counter haben?

auf der Startseite unten
Zitieren
#6
WO unten?
Über den Copyrights
Unter oder Über den Statistiken?
Zitieren
#7
wenns geht in der mitte von:

Zitat:Powered By MyBB
Deutsche Übersetzung: MyBBoard.de
Copyright © 2002-2008 MyBB Group
Theme Design: Lorddonk

Generated in 0.0437961 seconds (92.24% PHP / 7.76% MySQL)
MySQL Queries: 13 / Global Parsing Time: 0.0300839 / Memory Usage: 2.37 MB
PHP version: 5.2.5 / Server Load: 0.82 / GZip Compression: Enabled
[advanced details]
Zitieren
#8
Dazu musst du ins Template "footer" gehen.

Zum Zentrieren musst du deinen Code oben noch in center Tags setzen.

<center>Dein Code</center>

Wenn du nicht genau weißt wo der Code hin soll poste bitte mal den Inhalt deines footer Templates.
Zitieren
#9
hier der von einem style:
Zitat: <br />
<div class="bottommenu"><span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
</div>
</div>
<hr class="hidden" />
<div id="copyright">
<div id="debug"><debugstuff></div>
<!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.
It must contain the links to the MyBB website and be formatted appropriately.

Failure to comply with the above will result in prosecution to the full extent of the law.
This is free software, support us and we'll support you. -->
{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong>
<!-- End copyright -->
<br />
<!-- You may NOT remove, modify or hinder the visibility of my copyright at any time.-->
Theme Design: <a href="http://lorddonk.co.nr/">Lorddonk</a>
<br class="clear" />
</div>
</div>
Zitieren
#10
Teste es mal so:


Zitat:<br />
<div class="bottommenu"><span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a></span>
</div>
</div>
<center><script type="text/javascript" src="http://www.ipcounter.de/count_js.php?u=50147887&amp;color=red"></script> <noscript><a href="http://www.ipcounter.de/stats.php?u=50147887" target="_blank"><img src="http://www.ipcounter.de/count.php?u=50147887&amp;color=red" alt="IPCOUNTER.DE - Kostenloser Live Counter!" border="0" /></a></noscript></center>
<hr class="hidden" />
<div id="copyright">
<div id="debug"><debugstuff></div>
<!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.
It must contain the links to the MyBB website and be formatted appropriately.

Failure to comply with the above will result in prosecution to the full extent of the law.
This is free software, support us and we'll support you. -->
{$lang->powered_by} <a href="http://www.mybboard.net" target="_blank">MyBB</a> {$mybbversion}<br />
{$lang->copyright} &copy; 2002-{$copy_year} <strong><a href="http://www.mybboard.net" target="_blank">MyBB Group</a></strong>
<!-- End copyright -->
<br />
<!-- You may NOT remove, modify or hinder the visibility of my copyright at any time.-->
Theme Design: <a href="http://lorddonk.co.nr/">Lorddonk</a>
<br class="clear" />
</div>
</div>
Zitieren