<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Kommentare zu: chCounter / expCounter für WordPress nutzen</title>
	<atom:link href="http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/</link>
	<description>im-Tal.net mit Tipps zu WordPress, Microsoft Windows, Microsoft Office, Mozilla Firefox und Thunderbird, Google Chrome, Joomla</description>
	<lastBuildDate>Sat, 28 Jan 2012 22:13:44 +0100</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Von: Chris</title>
		<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/#comment-4489</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 02 Jun 2011 08:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.im-tal.net/?p=453#comment-4489</guid>
		<description>Ok, da lag also mein Fehler, ich hatte den Code einfach der counter.tpl.html hinzugefügt, habs jetzt angepasst.

Jetzt läufts wie gewünscht, vielen Dank! ;)</description>
		<content:encoded><![CDATA[<p>Ok, da lag also mein Fehler, ich hatte den Code einfach der counter.tpl.html hinzugefügt, habs jetzt angepasst.</p>
<p>Jetzt läufts wie gewünscht, vielen Dank! <img src='http://www.im-tal.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: maxe</title>
		<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/#comment-4488</link>
		<dc:creator>maxe</dc:creator>
		<pubDate>Thu, 02 Jun 2011 08:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.im-tal.net/?p=453#comment-4488</guid>
		<description>Du darfst natürlich in der counter.tpl.html sonst nix mehr drin stehen haben außer den o.g. Code, also davor und danach alles löschen. Oder nutzt du ein Plugin zur Integration des Counters in WP?</description>
		<content:encoded><![CDATA[<p>Du darfst natürlich in der counter.tpl.html sonst nix mehr drin stehen haben außer den o.g. Code, also davor und danach alles löschen. Oder nutzt du ein Plugin zur Integration des Counters in WP?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Chris</title>
		<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/#comment-4487</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 02 Jun 2011 08:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.im-tal.net/?p=453#comment-4487</guid>
		<description>Danke für die schnelle Antwort, so klappt es wie gewünscht, allerdings werden mir die Statistiken nun zwei mal angezeigt, einmal diese Standard-Box und darunter nun die Tabelle. Muss ich den Code-Snippet zur Implementierung in irgendeiner Form anpassen?

Ich möchte die Statistiken logischerweise nur einmal angezeigt bekommen, in der Tabellenform.</description>
		<content:encoded><![CDATA[<p>Danke für die schnelle Antwort, so klappt es wie gewünscht, allerdings werden mir die Statistiken nun zwei mal angezeigt, einmal diese Standard-Box und darunter nun die Tabelle. Muss ich den Code-Snippet zur Implementierung in irgendeiner Form anpassen?</p>
<p>Ich möchte die Statistiken logischerweise nur einmal angezeigt bekommen, in der Tabellenform.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: maxe</title>
		<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/#comment-4486</link>
		<dc:creator>maxe</dc:creator>
		<pubDate>Thu, 02 Jun 2011 08:22:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.im-tal.net/?p=453#comment-4486</guid>
		<description>Na klar ist das möglich. Dafür ist die Datei counter/templates/counter.tpl.html zuständig. Darin befindet sich eine Tabelle, die kannst du per html/css so stylen wie du es willst. Vielleicht hilft dir dabei auch der hier schon erwähnte Templategenerator weiter: http://www.expblog.net/expcounter/templategenerator/

Unsere counter.tpl.html sieht momentan so aus:
[code]&lt;table id=&quot;countertable&quot;&gt;
   &lt;tr&gt;
      &lt;!-- &lt;td&gt;{L_COUNTER_START}&lt;/td&gt; --&gt;
      &lt;td class=&quot;name&quot;&gt;Start:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_COUNTER_START}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Gesamt:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_TOTAL_VISITORS}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Gestern:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_YESTERDAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Heute:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_TODAY}&lt;/td&gt;
   &lt;/tr&gt;

   &lt;tr&gt;
      &lt;td class=&quot;name&quot;&gt;Ø/Tag:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_PER_DAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;max./Tag:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_MAX_VISITORS_PER_DAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;max. gleichz.:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_MAX_VISITORS_ONLINE}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;momentan:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;&lt;a href=&quot;{V_COUNTER_URL}/stats/online_users.php&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;{V_VISITORS_CURRENTLY_ONLINE}&lt;/a&gt;&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;[/code]</description>
		<content:encoded><![CDATA[<p>Na klar ist das möglich. Dafür ist die Datei counter/templates/counter.tpl.html zuständig. Darin befindet sich eine Tabelle, die kannst du per html/css so stylen wie du es willst. Vielleicht hilft dir dabei auch der hier schon erwähnte Templategenerator weiter: <a href="http://www.expblog.net/expcounter/templategenerator/" rel="nofollow">http://www.expblog.net/expcounter/templategenerator/</a></p>
<p>Unsere counter.tpl.html sieht momentan so aus:</p>
<pre class="brush: plain; title: ; notranslate">&lt;table id=&quot;countertable&quot;&gt;
   &lt;tr&gt;
      &lt;!-- &lt;td&gt;{L_COUNTER_START}&lt;/td&gt; --&gt;
      &lt;td class=&quot;name&quot;&gt;Start:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_COUNTER_START}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Gesamt:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_TOTAL_VISITORS}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Gestern:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_YESTERDAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;Heute:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_TODAY}&lt;/td&gt;
   &lt;/tr&gt;

   &lt;tr&gt;
      &lt;td class=&quot;name&quot;&gt;Ø/Tag:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_VISITORS_PER_DAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;max./Tag:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_MAX_VISITORS_PER_DAY}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;max. gleichz.:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;{V_MAX_VISITORS_ONLINE}&lt;/td&gt;
      &lt;td class=&quot;name&quot;&gt;momentan:&lt;/td&gt;
      &lt;td class=&quot;value&quot;&gt;&lt;a href=&quot;{V_COUNTER_URL}/stats/online_users.php&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;{V_VISITORS_CURRENTLY_ONLINE}&lt;/a&gt;&lt;/td&gt;
   &lt;/tr&gt;
&lt;/table&gt;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Chris</title>
		<link>http://www.im-tal.net/453/chcounter-fuer-wordpress-nutzen/#comment-4485</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 02 Jun 2011 07:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.im-tal.net/?p=453#comment-4485</guid>
		<description>Moin,

wie sieht es denn aus, wenn ich den Counter ähnlich wie bei euch unten im Footer integrieren möchte, die Tabelle ist bei mir leider immer zweispaltig, hätte aber auch lieber 4 Spalten und 2 Zeilen, wäre dies bei mir auch möglich?

Wie in der Anleitung, nutze auch ich Wordpress.</description>
		<content:encoded><![CDATA[<p>Moin,</p>
<p>wie sieht es denn aus, wenn ich den Counter ähnlich wie bei euch unten im Footer integrieren möchte, die Tabelle ist bei mir leider immer zweispaltig, hätte aber auch lieber 4 Spalten und 2 Zeilen, wäre dies bei mir auch möglich?</p>
<p>Wie in der Anleitung, nutze auch ich WordPress.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

