<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>SimpleLib</title>
	
	<link>http://www.simplelib.com</link>
	<description>The coding is simple!</description>
	<lastBuildDate>Sat, 17 Dec 2011 17:37:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Simplelib" /><feedburner:info uri="simplelib" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>Simplelib</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Using filters of Simple Counters</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/J8_E4Fx9fFs/</link>
		<comments>http://www.simplelib.com/?p=580#comments</comments>
		<pubDate>Sun, 16 Oct 2011 20:04:55 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=580</guid>
		<description><![CDATA[
Since version 1.1.17 of WordPress plugin Simple Counters were added two filters for possibility of your own localization of badge phrases. Why filters? Why not parameters? Because different languages have different number of plural forms and rules of using these forms. It means that we don&#8217;t know how many plural forms we need to save [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://www.simplelib.com/wp-content/uploads/2010/01/simple-counters.png"><img class="size-full wp-image-444 alignleft" style="margin-top: 5px; margin-right: 5px;" title="simple-counters" src="http://www.simplelib.com/wp-content/uploads/2010/01/simple-counters.png" alt="" width="150" height="150" /></a>Since version 1.1.17 of WordPress plugin Simple Counters were added two filters for possibility of your own localization of badge phrases. Why filters? Why not parameters? Because different languages have different number of plural forms and rules of using these forms. It means that we don&#8217;t know how many plural forms we need to save as parameters. Filters are better in this case because programmer can independently define number of plurals and rules of their using.<br />
<span id="more-580"></span><br />
For your own localization of words «readers» and «followers» you can use plugin filters «simple_counters_localization_feedburner» and «simple_counters_localization_twitter«. In order to use them, you must add to the file functions.php theme template the following code:</p>
<pre class="crayon-plain-tag"><code>// Simple Counters filter for Twitter
add_filter('simple_counters_localization_twitter', 'sc_twitter_str', 10, 2);
function sc_twitter_str($text, $count) {
	return &quot;total&quot;;
}</code></pre></p>
<p>or this code:</p>
<pre class="crayon-plain-tag"><code>// Simple Counters filter for FeedBurner
add_filter('simple_counters_localization_feedburner', 'sc_feedburner_str', 10, 2);
function sc_feedburner_str($text, $count) {
	$value = $text;
	$plural = ($count % 10 == 1 &amp;&amp; $count % 100 != 11 ? 0 : $count % 10 &gt;= 2 &amp;&amp; $count % 10 &lt;= 4 &amp;&amp; ($count % 100 &lt; 10 || $count % 100 &gt;= 20) ? 1 : 2);
	switch($plural) {
		case 0: $value = 'подписчик'; break;
		case 1: $value = 'подписчика'; break;
		case 2: $value = 'подписчиков'; break;
	}
	return $value;
}</code></pre></p>
<p>or this code:</p>
<pre class="crayon-plain-tag"><code>// Simple Counters filter for FeedBurner
add_filter('simple_counters_localization_feedburner', 'sc_feedburner_str', 10, 2);
function sc_feedburner_str($text, $count) {
	if($count == 1) $value = 'friend';
	else $value = 'friends';
	return $value;
}</code></pre></p>
<p>Note! You must use filters of Simple Counters only in next cases:</p>
<ol>
<li>Plugin has not localization for your language</li>
<li>You don&#8217;t like standard localization of words &#8220;readers&#8221; and &#8220;followers&#8221; for your language</li>
</ol>
<p>&nbsp;<br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 3361377, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?p=128&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2777260" target="_parent" onclick="return BlogGlue.go(event, this, 3361377, 2777260);" title="Wordpress plugin Multilingual Comments Number | SimpleLib">WordPress plugin Multilingual Comments Number | SimpleLib</a></li>
<li id="blogglue-inner-3"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 3361377, 2784655);" title="About">About</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://www.brownseo.com/2009/08/the-demise-of-the-university-of-the-philippines-educational-system/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2963171" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.brownseo.com/2009/08/the-demise-of-the-university-of-the-philippines-educational-system/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 3361377, 2963171);" title="The Demise of the University Of the Philippines Educational System"> The Demise of the University Of the Philippines Educational System </a> <span style="font-size:80% !important;">&nbsp;(SEO Philippines)</span> </li>
<li id="blogglue-cross-2"> <a href="http://www.brownseo.com/2011/10/of-poetry-and-other-stuff/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3377113" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.brownseo.com/2011/10/of-poetry-and-other-stuff/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 3361377, 3377113);" title="Of poetry and other stuff"> Of poetry and other stuff </a> <span style="font-size:80% !important;">&nbsp;(SEO Philippines)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=3361377" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=3361377&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/3361377.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved.</p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=580&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=580&amp;md5=1ebf745d44d1e18a1fbd40c22ee73458" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/UPgnAqroVNcGyNa2GuVleZtAxSw/0/da"><img src="http://feedads.g.doubleclick.net/~a/UPgnAqroVNcGyNa2GuVleZtAxSw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/UPgnAqroVNcGyNa2GuVleZtAxSw/1/da"><img src="http://feedads.g.doubleclick.net/~a/UPgnAqroVNcGyNa2GuVleZtAxSw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/J8_E4Fx9fFs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=580</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D580&amp;language=en_GB&amp;category=software&amp;title=Using+filters+of+Simple+Counters&amp;description=Since+version+1.1.17+of+Wordpress+plugin+Simple+Counters+were+added+two+filters+for+possibility+of+your+own+localization+of+badge+phrases.+Why+filters%3F+Why+not+parameters%3F+Because+different+languages+have+different+number+of+plural+forms+and+rules+of+using+these+forms.+It+means+that+we+don%27t+know+how+many+plural+forms+we+need+to+save+as+parameters.+Filters+are+better+in+this+case+because+programmer+can+independently+define+number+of+plurals+and+rules+of+their+using.%0D%0A%0D%0AFor+your+own+localization+of+words+%C2%ABreaders%C2%BB+and+%C2%ABfollowers%C2%BB+you+can+use+plugin+filters+%C2%ABsimple_counters_localization_feedburner%C2%BB+and+%C2%ABsimple_counters_localization_twitter%C2%AB.+In+order+to+use+them%2C+you+must+add+to+the+file+functions.php+theme+template+the+following+code%3A%0D%0A%0D%0A%5Bcrayon-4f46151c586f3+lang%3D%22php%22+title%3D%22Example+1.+No+plurals%22+url%3D%27sc.action.e1.php%27%2F%5D%0D%0A%0D%0Aor+this+code%3A%0D%0A%0D%0A%5Bcrayon-4f46151c58ec1+lang%3D%22php%22+title%3D%22Example+2.+Plurals+for+Russian+Blog%22+url%3D%27sc.action.e2.php%27%2F%5D%0D%0A%0D%0Aor+this+code%3A%0D%0A%0D%0A%5Bcrayon-4f46151c59691+lang%3D%22php%22+title%3D%22Example+3.+Plurals+for+English+Blog%22+url%3D%27sc.action.e3.php%27%2F%5D%0D%0A%0D%0ANote%21+You+must+use+filters+of+Simple+Counters+only+in+next+cases%3A%0D%0A%0D%0A%09Plugin+has+not+localization+for+your+language%0D%0A%09You+don%27t+like+standard+localization+of+words+%22readers%22+and+%22followers%22%C2%A0for+your+language%0D%0A%0D%0A%26nbsp%3B&amp;tags=plugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=580</feedburner:origLink></item>
		<item>
		<title>SAM. How it works.</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/wJqbUmzMsXI/</link>
		<comments>http://www.simplelib.com/?p=566#comments</comments>
		<pubDate>Sun, 17 Jul 2011 16:42:33 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=566</guid>
		<description><![CDATA[

Ads Place is rotator object. Each Ads Place consists of the default (patch) ad and a set of contained ads (not required).
Each Contained Ad object has a set of logical rules that defines where this object can be displayed. Default (Patch) Ad will be displayed only if any of Contained Ads can not be displayed [...]]]></description>
			<content:encoded><![CDATA[
<p style="text-align: center;"><a href="http://www.simplelib.com/wp-content/uploads/2011/07/ads-place.png"><img class="size-full wp-image-567 aligncenter" title="ads-place" src="http://www.simplelib.com/wp-content/uploads/2011/07/ads-place.png" alt="" width="510" height="160" /></a></p>
<p><strong>Ads Place</strong> is rotator object. Each Ads Place consists of the <strong>default (patch) ad</strong> and <strong>a set of contained ads</strong> (not required).<br />
Each <strong>Contained Ad</strong> object has a set of logical rules that defines where this object can be displayed. <strong>Default (Patch) Ad</strong> will be displayed only if any of <strong>Contained Ads</strong> can not be displayed on current page by defined it&#8217;s own rules.<br />
<span id="more-566"></span><br />
<strong>Examples:</strong></p>
<p>For example, I have three categories in the blog &#8211; News, Sports News and Church News. I have created one Ads Place &#8220;Header&#8221;.</p>
<p><em>Example 1</em>:<br />
This Ads Place contains three <strong>Ads</strong>. <strong>Default Ad</strong>is customised.</p>
<ul>
<li>Contained Ad (ID1) is customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: News.</li>
<li>Contained Ads (ID2 and ID3) are customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: Sports News.</li>
</ul>
<p>Result:</p>
<ul>
<li><strong>Ad (ID1)</strong> will be displayed only on single and archive pages of category News. Only this ad will be displayed on these pages.</li>
<li><strong>Ads (ID2 and ID3)</strong> will be rotated only on single and archive pages of category Sports News. Only these ads will be displayed on these pages.</li>
<li><strong>Default ad</strong> will be displayed on all other pages.</li>
</ul>
<p><em>Example 2</em>:<br />
This Ads Place contains three <strong>Ads</strong>. <strong>Default Ad</strong>is not customised.</p>
<ul>
<li>Contained Ad (ID1) is customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: News.</li>
<li>Contained Ads (ID2 and ID3) are customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: Sports News.</li>
</ul>
<p>Result:</p>
<ul>
<li><strong>Ad (ID1)</strong> will be displayed only on single and archive pages of category News. Only this ad will be displayed on these pages.</li>
<li><strong>Ads (ID2 and ID3)</strong> will be rotated only on single and archive pages of category Sports News. Only these ads will be displayed on these pages.</li>
<li>On all other pages will be displayed <strong>nothing</strong>.</li>
</ul>
<p><em>Example 3</em>:<br />
This Ads Place contains five <strong>Ads</strong>. <strong>Default Ad</strong>is customised.</p>
<ul>
<li>Contained Ad (ID1) is customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: News.</li>
<li>Contained Ads (ID2 and ID3) are customised as &#8220;<em>Show ad only on pages of this types</em>&#8220;: Single Post, Category Archive Pages; &#8220;<em>Show ad only in single posts or categories archives of certain categories</em>&#8220;: Sports News.</li>
<li>Contained Ads (ID4 and ID5) are customised as &#8220;<em>Show ad on all pages of blog</em>&#8220;.</li>
</ul>
<p>Result:</p>
<ul>
<li><strong>Ad (ID1)</strong> will be displayed only on single and archive pages of category News. Not only this ad will be displayed on these pages (see below).</li>
<li><strong>Ads (ID2 and ID3)</strong> will be rotated only on single and archive pages of category Sports News. Not only these ads will be displayed on these pages (see below).</li>
<li><strong>Ads (ID4 and ID5)</strong> will be rotated on all other pages like <strong>Default Ad</strong>. Also these ads will participate in rotation on pages of categories News and Sports News together with appropriate ads.</li>
<li><strong>Default Ad</strong> will not be shown never on any pages.</li>
</ul>
<p style="text-align: center;">Basically, these three examples demonstrate logic of operation of the Ads Place object.</p>
<p><a href="http://www.simplelib.com/wp-content/uploads/2011/07/ads-zone.png"><img class="size-full wp-image-568 aligncenter" title="ads-zone" src="http://www.simplelib.com/wp-content/uploads/2011/07/ads-zone.png" alt="" width="630" height="200" /></a></p>
<p><strong>Ads Zone</strong> object is the selector. It is the object realising additional logic of ads displaying.<br />
This object is necessary for bloggers who are operating considerable quantity of advertisements. It is difficult enough to track logic of displaying of several hundreds ads containing in one Ads Place. Much easier to divide available advertisements into groups by a certain criteria, to place them in several objects &#8220;Ads Place&#8221; and to select displaying of the certain object &#8220;Ads Place&#8221; for the necessary type of current page by means of the object &#8220;Ads Zone&#8221;.</p>
<p>The object &#8220;Ads Zone&#8221; can be necessary also in certain cases at a small amount of advertisements.</p>
<p>Let&#8217;s consider on an example:</p>
<p>I have three categories in the blog &#8211; <em>News</em>, <em>Sports News</em> and <em>Church News</em>. I have created three <strong>Ads Places</strong> &#8211; &#8220;<em>Header</em>&#8220;, &#8220;<em>Header (Church)</em>&#8221; and &#8220;Header (Single Post)&#8221;. As I do not want that readers of religious news saw advertising of wine, cigarettes, etc, I have placed all ads not intended for religious users in Ads Place &#8220;<em>Header</em>&#8221; object, and advertisements with the religious maintenance in Ads Place object &#8220;<em>Header (Church)</em>&#8220;. I have placed all available advertisements to the Ads Place object &#8220;Header (Single Post)&#8221; . For ads with the religious maintenance I have set &#8220;Show ad only in single posts or categories archives of certain categories&#8221;: Church News, for the others &#8211; &#8220;Do not show ad in single posts or categories archives of certain categories&#8221;: Church News.</p>
<p>Next I have created one Ads Zone object called &#8220;Header&#8221; and set default Ads Place as &#8220;Header&#8221; Ads Place. Ads Place property for &#8220;Church News&#8221; Category Archive Pages I set to &#8220;Header (Church)&#8221; Ads Place. Ads Place property for Single Post I set to &#8220;Header (Single Post)&#8221; Ads Place.</p>
<p>Result:</p>
<p>Religious users (readers of Church News) will see ads of the religious maintenance, all other readers &#8211; other ads.<br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2845112, 2784655);" title="About">About</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?page_id=457&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3034992" target="_parent" onclick="return BlogGlue.go(event, this, 2845112, 3034992);" title="Archive">Archive</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://www.does-seo-work.com/how-seo-works/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3072572" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.does-seo-work.com/how-seo-works/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2845112, 3072572);" title="How SEO Works"> How SEO Works </a> <span style="font-size:80% !important;">&nbsp;(Does SEO Work)</span> </li>
<li id="blogglue-cross-2"> <a href="http://www.brownseo.com/2011/10/30-and-loving-it/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3362513" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.brownseo.com/2011/10/30-and-loving-it/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2845112, 3362513);" title="30 and loving it"> 30 and loving it </a> <span style="font-size:80% !important;">&nbsp;(SEO Philippines)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2845112" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2845112&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2845112.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=566&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=566&amp;md5=081f37da8d74bc925851fb3f56356c20" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/qPhV0Bf76jlIIhR2YHKAP6rB28Y/0/da"><img src="http://feedads.g.doubleclick.net/~a/qPhV0Bf76jlIIhR2YHKAP6rB28Y/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qPhV0Bf76jlIIhR2YHKAP6rB28Y/1/da"><img src="http://feedads.g.doubleclick.net/~a/qPhV0Bf76jlIIhR2YHKAP6rB28Y/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/wJqbUmzMsXI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=566</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D566&amp;language=en_GB&amp;category=software&amp;title=SAM.+How+it+works.&amp;description=%0D%0AAds+Place+is+rotator+object.+Each+Ads+Place+consists+of+the+default+%28patch%29+ad+and+a+set+of+contained+ads+%28not+required%29.%0D%0AEach+Contained+Ad+object+has+a+set+of+logical+rules+that+defines+where+this+object+can+be+displayed.+Default+%28Patch%29+Ad+will+be+displayed+only+if+any+of+Contained+Ads+can+not+be+displayed+on+current+page+by+defined+it%27s+own+rules.%0D%0A%0D%0AExamples%3A%0D%0A%0D%0AFor+example%2C+I+have+three+categories+in+the+blog+-+News%2C+Sports+News+and+Church+News.+I+have+created+one+Ads+Place+%22Header%22.%0D%0A%0D%0AExample+1%3A%0D%0AThis+Ads+Place+contains+three+Ads.+Default+Adis+customised.%0D%0A%0D%0A%09Contained+Ad+%28ID1%29+is+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+News.%0D%0A%09Contained+Ads+%28ID2+and+ID3%29+are+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+Sports+News.%0D%0A%0D%0AResult%3A%0D%0A%0D%0A%09Ad+%28ID1%29+will+be+displayed+only+on+single+and+archive+pages+of+category+News.+Only+this+ad+will+be+displayed+on+these+pages.%0D%0A%09Ads+%28ID2+and+ID3%29+will+be+rotated+only+on+single+and+archive+pages+of+category+Sports+News.+Only+these+ads+will+be+displayed+on+these+pages.%0D%0A%09Default+ad+will+be+displayed+on+all+other+pages.%0D%0A%0D%0AExample+2%3A%0D%0AThis+Ads+Place+contains+three+Ads.+Default+Adis+not+customised.%0D%0A%0D%0A%09Contained+Ad+%28ID1%29+is+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+News.%0D%0A%09Contained+Ads+%28ID2+and+ID3%29+are+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+Sports+News.%0D%0A%0D%0AResult%3A%0D%0A%0D%0A%09Ad+%28ID1%29+will+be+displayed+only+on+single+and+archive+pages+of+category+News.+Only+this+ad+will+be+displayed+on+these+pages.%0D%0A%09Ads+%28ID2+and+ID3%29+will+be+rotated+only+on+single+and+archive+pages+of+category+Sports+News.+Only+these+ads+will+be+displayed+on+these+pages.%0D%0A%09On+all+other+pages+will+be+displayed+nothing.%0D%0A%0D%0AExample+3%3A%0D%0AThis+Ads+Place+contains+five+Ads.+Default+Adis+customised.%0D%0A%0D%0A%09Contained+Ad+%28ID1%29+is+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+News.%0D%0A%09Contained+Ads+%28ID2+and+ID3%29+are+customised+as+%22Show+ad+only+on+pages+of+this+types%22%3A+Single+Post%2C+Category+Archive+Pages%3B+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+Sports+News.%0D%0A%09Contained+Ads+%28ID4+and+ID5%29+are+customised+as+%22Show+ad+on+all+pages+of+blog%22.%0D%0A%0D%0AResult%3A%0D%0A%0D%0A%09Ad+%28ID1%29+will+be+displayed+only+on+single+and+archive+pages+of+category+News.+Not+only+this+ad+will+be+displayed+on+these+pages+%28see+below%29.%0D%0A%09Ads+%28ID2+and+ID3%29+will+be+rotated+only+on+single+and+archive+pages+of+category+Sports+News.+Not+only+these+ads+will+be+displayed+on+these+pages+%28see+below%29.%0D%0A%09Ads+%28ID4+and+ID5%29+will+be+rotated+on+all+other+pages+like+Default+Ad.+Also+these+ads+will+participate+in+rotation+on+pages+of+categories+News+and+Sports+News+together+with+appropriate+ads.%0D%0A%09Default+Ad+will+not+be+shown+never+on+any+pages.%0D%0A%0D%0ABasically%2C+these+three+examples+demonstrate+logic+of+operation+of+the+Ads+Place+object.%0D%0A%0D%0A%0D%0AAds+Zone+object+is+the+selector.+It+is+the+object+realising+additional+logic+of+ads+displaying.%0D%0AThis+object+is+necessary+for+bloggers+who+are+operating+considerable+quantity+of+advertisements.+It+is+difficult+enough+to+track+logic+of+displaying+of+several+hundreds+ads+containing+in+one+Ads+Place.+Much+easier+to+divide+available+advertisements+into+groups+by+a+certain+criteria%2C+to+place+them+in+several+objects+%22Ads+Place%22+and+to+select+displaying+of+the+certain+object+%22Ads+Place%22+for+the+necessary+type+of+current+page+by+means+of+the+object+%22Ads+Zone%22.%0D%0A%0D%0AThe+object+%22Ads+Zone%22+can+be+necessary+also+in+certain+cases+at+a+small+amount+of+advertisements.%0D%0A%0D%0ALet%27s+consider+on+an+example%3A%0D%0A%0D%0AI+have+three+categories+in+the+blog+-+News%2C+Sports+News+and+Church+News.+I+have+created+three+Ads+Places+-+%22Header%22%2C+%22Header+%28Church%29%22+and+%22Header+%28Single+Post%29%22.+As+I+do+not+want+that+readers+of+religious+news+saw+advertising+of+wine%2C+cigarettes%2C+etc%2C+I+have+placed+all+ads+not+intended+for+religious+users+in+Ads+Place+%22Header%22+object%2C+and+advertisements+with+the+religious+maintenance+in+Ads+Place+object+%22Header+%28Church%29%22.+I+have+placed+all+available+advertisements+to+the+Ads+Place+object+%22Header+%28Single+Post%29%22+.+For+ads+with+the+religious+maintenance+I+have+set+%22Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories%22%3A+Church+News%2C+for+the+others+-+%22Do+not+show+ad+in+single+posts+or+categories+archives+of+certain+categories%22%3A+Church+News.%0D%0A%0D%0ANext+I+have+created+one+Ads+Zone+object+called+%22Header%22+and+set+default+Ads+Place+as+%22Header%22+Ads+Place.+Ads+Place+property+for+%22Church+News%22+Category+Archive+Pages+I+set+to+%22Header+%28Church%29%22+Ads+Place.+Ads+Place+property+for+Single+Post+I+set+to+%22Header+%28Single+Post%29%22+Ads+Place.%0D%0A%0D%0AResult%3A%0D%0A%0D%0AReligious+users+%28readers+of+Church+News%29+will+see+ads+of+the+religious+maintenance%2C+all+other+readers+-+other+ads.&amp;tags=plugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=566</feedburner:origLink></item>
		<item>
		<title>WordPress plugin Simple Ads Manager</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/8Koio_KnYj0/</link>
		<comments>http://www.simplelib.com/?p=480#comments</comments>
		<pubDate>Sat, 01 Jan 2011 21:13:38 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[advertisement]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=480</guid>
		<description><![CDATA[
Until recently I used the plugin &#8220;Advertising Manager&#8221;. However, I am not quite satisfied the set of its capabilities. For example, the inability to display scheduled advertisements, or the inability to display ads in the posts only certain categories. Etc.
That&#8217;s why I wrote my own plugin to control the advertising on the blog &#8211; Simple [...]]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft" style="margin: 2px 10px;" src="http://www.simplelib.com/images/posts/advertisement.jpg" alt="Advertisment" width="200" height="165" />Until recently I used the plugin &#8220;Advertising Manager&#8221;. However, I am not quite satisfied the set of its capabilities. For example, the inability to display scheduled advertisements, or the inability to display ads in the posts only certain categories. Etc.</p>
<p>That&#8217;s why I wrote my own plugin to control the advertising on the blog &#8211; <strong>Simple Ads Manager</strong>. I tried to create a plugin that will satisfy most requests of any blogger to manage advertising on the blog. And I think I managed it.</p>
<p>Simple Ads Manager is easy to use plugin providing a flexible logic of displaying advertisements.</p>
<p><a href="http://forum.simplelib.com/forumdisplay.php?13-Simple-Ads-Manager" onclick="pageTracker._trackPageview('/outgoing/forum.simplelib.com/forumdisplay.php?13-Simple-Ads-Manager&amp;referer=');">Support Forum</a><br />
<span id="more-480"></span><br />
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/places-list.jpg' class='floatbox' rev='group: G4-7981 caption:`Ads Places` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/places-list-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/ads-list.jpg' class='floatbox' rev='group: G4-7981 caption:`Ads List` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/ads-list-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/place-edit.jpg' class='floatbox' rev='group: G4-7981 caption:`Ads Place Editor` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/place-edit-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/ad-edit.jpg' class='floatbox' rev='group: G4-7981 caption:`Ad Editor` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/ad-edit-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sam-params.jpg' class='floatbox' rev='group: G4-7981 caption:`Simple Ads Manager Settings` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sam-params-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/zones-list.jpg' class='floatbox' rev='group: G4-7981 caption:`Ads Zones List` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/zones-list-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/zone-edit.jpg' class='floatbox' rev='group: G4-7981 caption:`Ads Zone Editor` caption2:`Simple Ads Manager`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/zone-edit-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p></p>
<h2>Features</h2>
<ul>
<li>Flexible logic of advertisements rotation based on defined weight of each advertisement in group (Ads Place)</li>
<li>Custom default ad for each Ads Place Allowed types of ad&#8217;s codes are HTML, javascript, PHP</li>
<li>Codes of Google DoubleClick for Publishers (DFP) supports</li>
<li>More flexibility of displaying ads by using Ads Zone selector</li>
<li>Outputting ads as widget</li>
<li>Outputting ads as shortcodes in any place of single post/page content</li>
<li>Outputting ads in any place of theme template using output functions</li>
<li>Customizable outputting ads as block of ads</li>
<li>Automatic outputting ads in single post/page if allowed</li>
<li>Customizable limitation of displaying advertisements by types of page</li>
<li>Customizable limitation of displaying advertisements on single post page by post ID (IDs)</li>
<li>Customizable limitation of displaying advertisements on single post page or category archive page by category (categories)</li>
<li>Customizable limitation of displaying advertisements on single post page or author archive page by author (authors)</li>
<li>Customizable limitation of displaying advertisements on single post page or tag archive page by tag (tags)</li>
<li>Customizable limitation of displaying advertisements on custom type single post page or custom type archive page by Custom Type (Types)</li>
<li>Customizable blocking of displaying advertisements on single post/page by post/page ID (IDs)</li>
<li>Customizable blocking of displaying advertisements on single post page or category archive page by category (categories)</li>
<li>Customizable blocking of displaying advertisements on single post page or author archive page by author (authors)</li>
<li>Customizable blocking of displaying advertisements on single post page or tag archive page by tag (tags)</li>
<li>Customizable blocking of displaying advertisements on custom type single post page or custom type archive page by Custom Type (Types)</li>
<li>Schedule of displaying each advertisment if allowed</li>
<li>Customizable limitation of displaying advertisements by hits</li>
<li>Customizable limitation of displaying advertisements by clicks</li>
<li>Statistics of hits</li>
<li>Statistics of clicks (your own advertisment image mode)</li>
<li>Customizable accuracy of bots and crawlers detection</li>
<li>Counting revenue from ads placement, display ads and clicks on advertisements</li>
</ul>
<h2>Available languages</h2>
<ul>
<li>English</li>
<li>Russian</li>
<li>German by <a href="http://www.ktraces.de/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.ktraces.de/?referer=');">Fabian Krenzler</a> and <strong>Ulrich Simon</strong></li>
<li>Belarusian by <strong>Alexander Ovsov</strong> (<a href="http://webhostinggeeks.com/science/" onclick="pageTracker._trackPageview('/outgoing/webhostinggeeks.com/science/?referer=');">Web Geek Sciense</a>)</li>
</ul>
<h2>The Concept</h2>
<p>The main object of the plugin is &#8220;<strong>Ads Place</strong>&#8220;. Each Ads Place is a container for the advertisements and provides the logic of the show and rotation. In addition, one of the parameters of advertising space is &#8220;patch ad code&#8221;, ie ad to be shown if and only if the logic of ads this Ads Place does not permit to show none of the advertisements contained in this Ads Place. One Ads Place can contain any number of objects &#8220;advertisement&#8221;.</p>
<p>Object &#8220;<strong>advertisement</strong>&#8221; rigidly attached to his container &#8220;Ads Place&#8221;. Its parameters determine frequency (weight) of displaying and limiting displaying from &#8220;show all pages&#8221; to &#8220;show the articles with ID &#8230; &#8221; and show from date to date (the schedule).</p>
<p>Additional object &#8220;<strong>Ads Zone</strong>&#8221; is selector developed for increasing the flexibility of displaying ads. This optional object can be useful for conducting advertising campaigns using a large number of promotional materials.</p>
<p>The additional object &#8220;<strong>Ads Block</strong>&#8221; allows to display the block of advertisements.</p>
<h2>Installation</h2>
<ol>
<li>Upload the plugin folder to the folder <code>/wp-content/plugins/</code></li>
<li>Activate the plugin on the Plugins page</li>
<li>Configure your plugin to meet your needs</li>
<li>Create an Ads Spaces in the right quantity and fill them with advertisements</li>
</ol>
<h2>Options</h2>
<p>Go to the page <em>Ads-&gt;Settings</em></p>
<p><strong>Views per Cycle</strong> &#8211; the number of impressions an ad for one cycle of rotation, provided that this ad has maximum weight (the activity). In other words, if the number of hits in the series is 1000, an ad with a weight of 10 will be shown in 1000, and the ad with a weight of 3 will be shown 300 times.</p>
<p>Do not set this parameter to a value less than the maximum number of visitors which may simultaneously be on your site &#8211; it may violate the logic of rotation.</p>
<p>Not worth it, though it has no special meaning, set this parameter to a value greater than the number of hits your web pages during a month. Optimal, perhaps, is the value to the daily shows website pages.</p>
<p><strong>Display Ad Source in</strong> &#8211; you can display advertisement target in new or current window (tab). Select target window (tab).</p>
<p><strong>Auto Inserting Settings</strong> &#8211; here you can select the Ads Places and allow the display of their ads before and after the  content of single post.</p>
<p><strong>Google DFP Settings</strong> &#8211; if you want to use codes of Google DFP rotator, you must allow it&#8217;s using and define your pub-code.</p>
<p><strong>Statistics Settings</strong></p>
<p><em>Bots and Crawlers detection</em></p>
<p>For obtaining of more exact indexes of statistics and incomes it is preferable to exclude data about visits of bots and crawlers from the data about all visits of your blog. If enabled and bot or crawler is detected, hits of ads won&#8217;t be counted. Select accuracy of detection but use with caution &#8211; more exact detection requires more server resources.</p>
<p><em>Allow Bots and Crawlers detection</em> &#8211; If allowed, hits of detected bot won&#8217;t be counted.</p>
<p><em>Accuracy of Bots and Crawlers Detection</em>:</p>
<ul>
<li>Inexact detection &#8211; This method is based on an analysis of the request header. Inaccurate method.</li>
<li>Exact detection &#8211; This method uses the Browser library by <a href="http://chrisschuld.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/chrisschuld.com/?referer=');">Chris Schuld</a> for detection of bots. Recommended.</li>
<li>More exact detection &#8211; This method uses &#8220;browscap&#8221; data for bots detection. Very exact and very slow method. If browscap not defined in your <strong>php.ini</strong>, this method is unavailable.</li>
</ul>
<p><em>Display of Currency</em>:</p>
<ul>
<li>Auto &#8211; auto detection of currency from blog settings.</li>
<li>USD &#8211; Forcing the display of currency to U.S. dollars.</li>
<li>EUR &#8211; Forcing the display of currency to Euro.</li>
</ul>
<h2>Ads Place creation and configuration</h2>
<p>Go to your list of Ads Places (Ads -&gt; Ads Places) and click the &#8220;Add New Place&#8221;.  In the opened editor window configure current Ad Place.</p>
<p>Enter a <strong>name</strong> and a <strong>description</strong> of the Ads Place. In principle, it is not mandatory parameters, because these parameters don&#8217;t influence anything, but experience suggests that after a while all IDs usually will be forgotten  and such information may be useful.</p>
<p><strong>Ads Place Size</strong> &#8211; in this version is only for informational purposes only, but in future I plan to use this option. It is desirable to expose the real size.</p>
<p><strong>Ads Place Patch</strong> &#8211; it&#8217;s an ad that will appear in the event that the logic of basic ads outputing of this Ads Place on the current page will not be able to choose a single basic ad for displaying. For example, if all basic announcements are set to displaying only on archives pages or single pages, in this case the patch ad of Ads Place will be shown on the Home page. Conveniently to use the patch ad of Ads Place where you sell the advertising place for a limited time &#8211; after the time expiration of ordered ad will appear patch ad. It may be a banner leading to your page of advertisement publication costs or a banner from AdSense.</p>
<p>Patch can be defined:</p>
<ul>
<li>as combination of the image URL and target page URL</li>
<li>as HTML code or javascript code</li>
<li>as name of Google <a href="https://www.google.com/intl/en/dfp/info/welcome.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.google.com/intl/en/dfp/info/welcome.html?referer=');">DoubleClick for Publishers</a> (DFP) block</li>
</ul>
<p>If you select the first option (image mode), tools to download/choosing of downloaded image banner become available for you.</p>
<p><strong>Codes</strong> &#8211; as Ads Place can be inserted into the page code not only as widget, but as a short code or by using function, you can use code &#8220;before&#8221; and &#8220;after&#8221; for centering or alignment of Ads Place on the place of inserting or for something else you need. Use HTML tags.</p>
<h2>Advertisment creation and configuration</h2>
<p>Go to the list of Ads Places (Ads -&gt; Ads Places), move the mouse to the desired Ads Place, select in the row menu that appears &#8220;View Ads&#8221; for the transition to the advertisments list of this Ads Place or &#8220;Add Ad&#8221; for the transition to the editor of a new ad. If you went to the list of ads, click on &#8220;Add New Ad&#8221;.</p>
<p>Enter a <strong>name</strong> and a <strong>description</strong> of the advertisement. These parameters are optional, because don&#8217;t influence anything, but help in the visual identification of the ad (do not forget which is which).</p>
<p><strong>Ad Code</strong> &#8211; code can be defined as a combination of the image URL and target page URL, or as HTML code, javascript code, or PHP code (for PHP-code don&#8217;t forget to set the checkbox labeled &#8220;This code of ad contains PHP script). If you select the first option (image mode) you can keep statistics of clicks and also tools for uploading/selecting the downloaded image banner becomes available to you.</p>
<p><strong>Restrictions of Advertisment Showing</strong></p>
<p><em>Ad Weight</em> &#8211; coefficient of frequency of show of the advertisement for one cycle of advertisements rotation.<br />
0 &#8211; ad is inactive, 1 &#8211; minimal activity of this advertisment, 10 &#8211; maximal activity of this ad.</p>
<p><em>Restrictions by the type of pages</em> &#8211; select restrictions:</p>
<ol>
<li>Show ad on all pages of blog</li>
<li>Show ad only on pages of this type &#8211; ad will appear only on the pages of selected types</li>
<li>Show ad only in certain posts &#8211; ad will be shown only on single posts pages with the given IDs (ID items separated by commas, no spaces)</li>
</ol>
<p><em>Additional restrictions</em></p>
<ol>
<li>Show ad only in single posts or categories archives of certain categories &#8211; ad will be shown only on single posts pages or category archive pages of the specified categories</li>
<li>Show ad only in single posts or authors archives of certain authors &#8211; ad will be shown only on single posts pages or author archive pages of the specified authors</li>
</ol>
<p><em>Use the schedule for this ad</em> &#8211; if necessary, select checkbox labeled &#8220;Use the schedule for this ad&#8221; and set start and finish dates of ad campaign.</p>
<p><em>Use limitation by hits</em> &#8211; Use this parameter for limiting displaying of ad by hits.</p>
<p><em>Use limitation by clicks</em> &#8211; Use this parameter for limiting displaying of ad by clicks.</p>
<p><strong>Prices</strong> &#8211; your prices for that ad.</p>
<ul>
<li>Ad placement per month &#8211; used only for scheduled ads.</li>
<li>Per Thousand Hits &#8211; Not only humans visit your blog, bots and crawlers too. In order not to deceive an advertiser, you must enable the detection of bots and crawlers.</li>
<li>Per Click &#8211; To calculate the earnings on clicks, you must enable counting of clicks for that ad.</li>
</ul>
<h2>Ads Zone creation and configuration</h2>
<p>Ads Zone is selector that used to select the appropriate Ads Place for each type of displayed page.</p>
<p>Go to your list of Ads Zones (Ads -&gt; Ads Zones) and click the &#8220;Add New Zone&#8221;.  In the opened editor window configure current Ads Zone.</p>
<p>Enter a <strong>name</strong> and a <strong>description</strong> of the Ads Zone.</p>
<p>Select default Ads Place.</p>
<p>Select the appropriate Ads Places for each <strong>type of page</strong>, <strong>category</strong> or <strong>author</strong> or leave &#8220;Default&#8221; value. You can block displaying Ads Place on needed <strong>type of page</strong> selecting &#8220;None&#8221; value.</p>
<h2>Ads Block creation and configuration</h2>
<p>Ads Block used for outputting block of ads.</p>
<p>Go to your list of Ads Blocks (Ads -&gt; Ads Blocks) and click the &#8220;Add New Block&#8221;.  In the opened editor window configure current Ads Block.</p>
<p>Enter a <strong>name</strong> and a <strong>description</strong> of the Ads Block.</p>
<p>Enter number of lines and columns of Ads Block. After changing these properties you must save Ads Block settings before using Ads Block Editor.</p>
<p>Configure styles for Ads Block and Block&#8217;s items. Use <strong>Stylesheet rules</strong> for defining these properties. For example: <code>url(sheep.png) center bottom no-repeat</code> for background property or <code>5px solid red</code> for border property.</p>
<p><strong>Important Note</strong>: As the Ads Block is the regular structure, predefined styles of individual items for drawing Ads Block&#8217;s elements aren&#8217;t used. Define styles for Ads Block Items on Ads Block Editor page!</p>
<p>Customize Ads Block structure (select Ads Place or Ads Zone or Single Ad for each item of block).</p>
<h2>Usage</h2>
<p>There are three variants for output: widgets, short codes, the function&#8230; and auto inserting&#8230;</p>
<h3>Widgets</h3>
<p>Go to the widgets page (Appearance-&gt;Widgets). In the area of available widgets locate widget &#8220;Ads Place&#8221; and drag it to the necessary sidebar. You can also use widgets &#8220;Ads Zone&#8221; and &#8220;Single Ad&#8221;.</p>
<p>Configure your widget:</p>
<ul>
<li><em>Title</em> &#8211; title of widget. If not needed, leave empty.</li>
<li><em>Ads Place</em> &#8211; select Ads Place from a list of all Ads Places.</li>
<li><em>Hide widget style</em> &#8211; in some theme templates it is necessary for the sidebar in the blog header.</li>
<li><em>Allow using previously defined &#8220;before&#8221; and &#8220;after&#8221; codes of Ads Place</em> &#8211; these are the codes that are defined for each Ads Place as &#8220;code before&#8221; and &#8220;code after&#8221;.</li>
</ul>
<p>Widgets &#8220;Ads Zone&#8221; and &#8220;Single Ad&#8221; can be configured in the same way.</p>
<h3>Shortcodes</h3>
<p>Shortcode &#8220;sam&#8221; enables you to insert <strong>Ads Place</strong> anywhere in the post&#8217;s content.</p>
<div id='stb-box-5601' class='stb-grey_box' ><strong>[sam id=1 codes='false']</strong></div>
<ul>
<li><strong>id</strong> &#8211; ID of Ads Place</li>
<li><strong>codes</strong> &#8211; allow or not allow to use Ads Place codes &#8220;before&#8221; and &#8220;after&#8221;. Default &#8220;false&#8221;</li>
</ul>
<p>Shortcode &#8220;sam_zone&#8221; enables you to insert <strong>Ads Zone</strong> anywhere in the post&#8217;s content.</p>
<div id='stb-box-493' class='stb-grey_box' ><strong>[sam_zone id=1 codes='false']</strong></div>
<ul>
<li><strong>id</strong> &#8211; ID of Ads Zone</li>
<li><strong>codes</strong> &#8211; allow or not allow to use Ads Place codes &#8220;before&#8221; and &#8220;after&#8221;. Default &#8220;false&#8221;</li>
</ul>
<p>Shortcode &#8220;sam_ad&#8221; enables you to insert <strong>Single Ad</strong> anywhere in the post&#8217;s content.</p>
<div id='stb-box-681' class='stb-grey_box' ><strong>[sam_ad id=1 codes='false']</strong></div>
<ul>
<li><strong>id</strong> &#8211; ID of Ad</li>
<li><strong>codes</strong> &#8211; allow or not allow to use Ads Place codes &#8220;before&#8221; and &#8220;after&#8221;. Default &#8220;false&#8221;</li>
</ul>
<p>Shortcode &#8220;sam_block&#8221; enables you to insert <strong>Ads Block</strong> anywhere in the post&#8217;s content.</p>
<div id='stb-box-8709' class='stb-grey_box' ><strong>[sam_block id=1]</strong></div>
<ul>
<li><strong>id</strong> &#8211; ID of Ads Zone</li>
</ul>
<h3>Output functions</h3>
<p>In order that would insert Ads in any place of theme template, use the <em>drawAdsPlace</em>, <em>drawAdsZone</em> or <em>drawAd</em> functions.</p>
<p>Output functions are defined as follows:</p>
<pre class="crayon-plain-tag"><code>function drawAdsPlace($args = null, $codes = false)
function drawAdsZone($args = null, $codes = false)
function drawAd($args = null, $codes = false)
function drawAdsBlock($args = null)</code></pre></p>
<ul>
<li><strong>args</strong> &#8211; array, which may include id (ID of Ads Place) or/and name (the name of Ads Place, not recommended)</li>
<li><strong>codes</strong> &#8211; bool|array, allow or not allow to use Ads Place codes &#8220;before&#8221; and &#8220;after&#8221;. Default &#8220;false&#8221;. If <em>bool</em> value, codes &#8216;before&#8217; and &#8216;after&#8217; will be received from Ads Place record. If <em>array</em> value, codes &#8216;before&#8217; and &#8216;after&#8217; will be received from array.</li>
</ul>
<pre class="crayon-plain-tag"><code>// Ads Place output
if(function_exists('drawAdsPlace')) drawAdsPlace(array('id' =&gt; 1), true);
// or
if(function_exists('drawAdsPlace')) drawAdsPlace(array('id' =&gt; 1), array('before' =&gt; '&lt;div class=&quot;ad&quot;&gt;', 'after' =&gt; '&lt;/div&gt;'));
 
// Ads Zone output
if(function_exists('drawAdsZone')) drawAdsZone(array('id' =&gt; 1), true);
// or
if(function_exists('drawAdsZone')) drawAdsZone(array('id' =&gt; 1), array('before' =&gt; '&lt;div class=&quot;ad&quot;&gt;', 'after' =&gt; '&lt;/div&gt;'));
 
// Single Ad output
if(function_exists('drawAd')) drawAd(array('id' =&gt; 1), true);
// or
if(function_exists('drawAd')) drawAd(array('id' =&gt; 1), array('before' =&gt; '&lt;div class=&quot;ad&quot;&gt;', 'after' =&gt; '&lt;/div&gt;'));
 
// Ads Block output
if(function_exists('drawAdsBlock')) drawAdsBlock(array('id' =&gt; 1));</code></pre></p>
<h3>Auto Inserting</h3>
<p>Designed for automatic insertion of ad codes before and after the content of single post. Configuring is on plugin settings page.</p>
<h2>Miscellaneous</h2>
<p>At first glance, it might seem that the plugin is too heavy &#8211; as did 500 kb codes. But do not be terrified ahead of time, the plugin is using the technology of saving resources. In other words, in the Face Side is loading only 23 kb of codes, of which 21 kb PHP-code and 2 kb javascript code. Everything else are extentions for the admin mode, and even then, not all are loading en masse, but only if necessary.</p>
<p>Video Lessons:</p>
<p style="text-align:center"><a href='http://www.youtube.com/watch?v=2tLkgM1vvz8' class='floatbox' rev='group: G6-6811 caption:`Installation and Configuration` caption2:`Simple Ads Manager`'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=2tLkgM1vvz8&amp;referer=');"><img src="http://i.ytimg.com/vi/2tLkgM1vvz8/default.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.youtube.com/watch?v=M7c7u9Nd6iw' class='floatbox' rev='group: G6-6811 caption:`Installation` caption2:`Simple Ads Manager`'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=M7c7u9Nd6iw&amp;referer=');"><img src="http://i.ytimg.com/vi/M7c7u9Nd6iw/default.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.youtube.com/watch?v=cyIpasu-klE' class='floatbox' rev='group: G6-6811 caption:`Configuring` caption2:`Simple Ads Manager`'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=cyIpasu-klE&amp;referer=');"><img src="http://i.ytimg.com/vi/cyIpasu-klE/default.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<h2>Donations</h2>
<div id='stb-box-3031' class='stb-info_box' >If you have found this plugin useful, please consider making a <a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');">donation</a> to help support future development. Your support will be much appreciated. Thank you!<br />
<a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');"><img class="size-full wp-image-542 alignleft" style="margin-left: 5px; margin-top: 5px;" title="Donate Now!" src="http://www.simplelib.com/wp-content/uploads/2011/01/donate-now.png" alt="" width="100" height="34" /></a></p>
<p style="margin: 1px; font-size: 0.8em; line-height: 12px;">Warning! The default value of donation is $200. Don&#8217;t worry! This is not my appetite, this is default value defined by Payoneer service, you can change it to any value you want!</p>
<p></div>
<h3>Donations List</h3>
<p>Many thanks to everyone who supports the development of this plugin:</p>
<p><a href="http://www.swvolusia.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.swvolusia.com/?referer=');">Michael Kiepert</a>, <strong>Andrea Vacondio</strong></p>
<h2>Download</h2>
<p><div id='stb-box-1110' class='stb-download_box' ><p><strong><a href='http://wordpress.org/extend/plugins/simple-ads-manager/' onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/simple-ads-manager/?referer=');">Simple Ads Manager</a></strong> <br/>Simple Ads Manager is easy to use plugin providing a flexible logic of displaying advertisements.</p><p>Author: <a href="http://blogcoding.ru" onclick="pageTracker._trackPageview('/outgoing/blogcoding.ru?referer=');">minimus</a>, version: 1.4.44, updated: February 19, 2012, <br/>Requires WP version: 3.1 or higher, tested up to: 3.3.1.<br/><a href="http://downloads.wordpress.org/plugin/simple-ads-manager.zip" onclick="pageTracker._trackPageview('/outgoing/downloads.wordpress.org/plugin/simple-ads-manager.zip?referer=');">Download</a> (38 625 hits) <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/half.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/empty.png"/> (31 votes)</p></div><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777250, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777250, 2784655);" title="About">About</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2731782" target="_blank" onclick="pageTracker._trackPageview('/outgoing/thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777250, 2731782);" title="The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness"> The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness </a> <span style="font-size:80% !important;">&nbsp;(xbgxxx)</span> </li>
<li id="blogglue-cross-2"> <a href="http://rossjoyner.com/2118/four-simple-seo-tips-and-a-great-wordpress-plugin/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3556093" target="_blank" onclick="pageTracker._trackPageview('/outgoing/rossjoyner.com/2118/four-simple-seo-tips-and-a-great-wordpress-plugin/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777250, 3556093);" title="Four Simple SEO Tips And A Great WordPress Plugin"> Four Simple SEO Tips And A Great WordPress Plugin </a> <span style="font-size:80% !important;">&nbsp;(rossjoyner)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777250" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777250&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777250.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved.</p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=480&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=480&amp;md5=7b84f5fb9d329bb39903ceeb876466d0" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/2FVnr02thHclXCCMeOLrEswNtMQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/2FVnr02thHclXCCMeOLrEswNtMQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/2FVnr02thHclXCCMeOLrEswNtMQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/2FVnr02thHclXCCMeOLrEswNtMQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/8Koio_KnYj0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=480</wfw:commentRss>
		<slash:comments>310</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D480&amp;language=en_GB&amp;category=software&amp;title=WordPress+plugin+Simple+Ads+Manager&amp;description=Until+recently+I+used+the+plugin+%22Advertising+Manager%22.+However%2C+I+am+not+quite+satisfied+the+set+of+its+capabilities.+For+example%2C+the+inability+to+display+scheduled+advertisements%2C+or+the+inability+to+display+ads+in+the+posts+only+certain+categories.+Etc.%0D%0A%0D%0AThat%27s+why+I+wrote+my+own+plugin+to+control+the+advertising+on+the+blog+-+Simple+Ads+Manager.+I+tried+to+create+a+plugin+that+will+satisfy+most+requests+of+any+blogger+to+manage+advertising+on+the+blog.+And+I+think+I+managed+it.%0D%0A%0D%0ASimple+Ads+Manager+is+easy+to+use+plugin+providing+a+flexible+logic+of+displaying+advertisements.%0D%0A%0D%0ASupport+Forum%0D%0A%0D%0A%5Bsvg+id%3D4%5D%0D%0AFeatures%0D%0A%0D%0A%09Flexible+logic+of+advertisements+rotation+based+on+defined+weight+of+each+advertisement+in+group+%28Ads+Place%29%0D%0A%09Custom+default+ad+for+each+Ads+Place+Allowed+types+of+ad%27s+codes+are+HTML%2C+javascript%2C+PHP%0D%0A%09Codes+of+Google+DoubleClick+for+Publishers+%28DFP%29+supports%0D%0A%09More+flexibility+of+displaying+ads+by+using+Ads+Zone+selector%0D%0A%09Outputting+ads+as+widget%0D%0A%09Outputting+ads+as+shortcodes+in+any+place+of+single+post%2Fpage+content%0D%0A%09Outputting+ads+in+any+place+of+theme+template+using+output+functions%0D%0A%09Customizable+outputting+ads+as+block+of+ads%0D%0A%09Automatic+outputting+ads+in+single+post%2Fpage+if+allowed%0D%0A%09Customizable+limitation+of+displaying+advertisements+by+types+of+page%0D%0A%09Customizable+limitation+of+displaying+advertisements+on+single+post+page+by+post+ID+%28IDs%29%0D%0A%09Customizable+limitation+of+displaying+advertisements+on+single+post+page+or+category+archive+page+by+category+%28categories%29%0D%0A%09Customizable+limitation+of+displaying+advertisements+on+single+post+page+or+author+archive+page+by+author+%28authors%29%0D%0A%09Customizable+limitation+of+displaying+advertisements+on+single+post+page+or+tag+archive+page+by+tag+%28tags%29%0D%0A%09Customizable+limitation+of+displaying+advertisements+on+custom+type+single+post+page+or+custom+type+archive+page+by+Custom+Type+%28Types%29%0D%0A%09Customizable+blocking+of+displaying+advertisements+on+single+post%2Fpage+by+post%2Fpage+ID+%28IDs%29%0D%0A%09Customizable+blocking+of+displaying+advertisements+on+single+post+page+or+category+archive+page+by+category+%28categories%29%0D%0A%09Customizable+blocking+of+displaying+advertisements+on+single+post+page+or+author+archive+page+by+author+%28authors%29%0D%0A%09Customizable+blocking+of+displaying+advertisements+on+single+post+page+or+tag+archive+page+by+tag+%28tags%29%0D%0A%09Customizable+blocking+of+displaying+advertisements+on+custom+type+single+post+page+or+custom+type+archive+page+by+Custom+Type+%28Types%29%0D%0A%09Schedule+of+displaying+each+advertisment+if+allowed%0D%0A%09Customizable+limitation+of+displaying+advertisements+by+hits%0D%0A%09Customizable+limitation+of+displaying+advertisements+by+clicks%0D%0A%09Statistics+of+hits%0D%0A%09Statistics+of+clicks+%28your+own+advertisment+image+mode%29%0D%0A%09Customizable+accuracy+of+bots+and+crawlers+detection%0D%0A%09Counting+revenue+from+ads+placement%2C+display+ads+and+clicks+on+advertisements%0D%0A%0D%0AAvailable+languages%0D%0A%0D%0A%09English%0D%0A%09Russian%0D%0A%09German+by+Fabian+Krenzler+and+Ulrich+Simon%0D%0A%09Belarusian+by+Alexander+Ovsov+%28Web+Geek+Sciense%29%0D%0A%0D%0AThe+Concept%0D%0AThe+main+object+of+the+plugin+is+%22Ads+Place%22.+Each+Ads+Place+is+a+container+for+the+advertisements+and+provides+the+logic+of+the+show+and+rotation.+In+addition%2C+one+of+the+parameters+of+advertising+space+is+%22patch+ad+code%22%2C+ie+ad+to+be+shown+if+and+only+if+the+logic+of+ads+this+Ads+Place+does+not+permit+to+show+none+of+the+advertisements+contained+in+this+Ads+Place.+One+Ads+Place+can+contain+any+number+of+objects+%22advertisement%22.%0D%0A%0D%0AObject+%22advertisement%22+rigidly+attached+to+his+container+%22Ads+Place%22.+Its+parameters+determine+frequency+%28weight%29+of+displaying+and+limiting+displaying+from+%22show+all+pages%22+to+%22show+the+articles+with+ID+...+%22+and+show+from+date+to+date+%28the+schedule%29.%0D%0A%0D%0AAdditional+object+%22Ads+Zone%22+is+selector+developed+for+increasing+the+flexibility+of+displaying+ads.+This+optional+object+can+be+useful+for+conducting+advertising+campaigns+using+a+large+number+of+promotional+materials.%0D%0A%0D%0AThe+additional+object+%22Ads+Block%22+allows+to+display+the+block+of+advertisements.%0D%0AInstallation%0D%0A%0D%0A%09Upload+the+plugin+folder+to+the+folder+%2Fwp-content%2Fplugins%2F%0D%0A%09Activate+the+plugin+on+the+Plugins+page%0D%0A%09Configure+your+plugin+to+meet+your+needs%0D%0A%09Create+an+Ads+Spaces+in+the+right+quantity+and+fill+them+with+advertisements%0D%0A%0D%0AOptions%0D%0AGo+to+the+page+Ads-%26gt%3BSettings%0D%0A%0D%0AViews+per+Cycle+-+the+number+of+impressions+an+ad+for+one+cycle+of+rotation%2C+provided+that+this+ad+has+maximum+weight+%28the+activity%29.+In+other+words%2C+if+the+number+of+hits+in+the+series+is+1000%2C+an+ad+with+a+weight+of+10+will+be+shown+in+1000%2C+and+the+ad+with+a+weight+of+3+will+be+shown+300+times.%0D%0A%0D%0ADo+not+set+this+parameter+to+a+value+less+than+the+maximum+number+of+visitors+which+may+simultaneously+be+on+your+site+-+it+may+violate+the+logic+of+rotation.%0D%0A%0D%0ANot+worth+it%2C+though+it+has+no+special+meaning%2C+set+this+parameter+to+a+value+greater+than+the+number+of+hits+your+web+pages+during+a+month.+Optimal%2C+perhaps%2C+is+the+value+to+the+daily+shows+website+pages.%0D%0A%0D%0ADisplay+Ad+Source+in+-+you+can+display+advertisement+target+in+new+or+current+window+%28tab%29.+Select+target+window+%28tab%29.%0D%0A%0D%0AAuto+Inserting+Settings+-+here+you+can+select+the+Ads+Places+and+allow+the+display+of+their+ads+before+and+after+the%C2%A0+content+of+single+post.%0D%0A%0D%0AGoogle+DFP+Settings+-+if+you+want+to+use+codes+of+Google+DFP+rotator%2C+you+must+allow+it%27s+using+and+define+your+pub-code.%0D%0A%0D%0AStatistics+Settings%0D%0A%0D%0ABots+and+Crawlers+detection%0D%0A%0D%0AFor+obtaining+of+more+exact+indexes+of+statistics+and+incomes+it+is+preferable+to+exclude+data+about+visits+of+bots+and+crawlers+from+the+data+about+all+visits+of+your+blog.+If+enabled+and+bot+or+crawler+is+detected%2C+hits+of+ads+won%27t+be+counted.+Select+accuracy+of+detection+but+use+with+caution+-+more+exact+detection+requires+more+server+resources.%0D%0A%0D%0AAllow+Bots+and+Crawlers+detection+-+If+allowed%2C+hits+of+detected+bot+won%27t+be+counted.%0D%0A%0D%0AAccuracy+of+Bots+and+Crawlers+Detection%3A%0D%0A%0D%0A%09Inexact+detection+-+This+method+is+based+on+an+analysis+of+the+request+header.+Inaccurate+method.%0D%0A%09Exact+detection+-+This+method+uses+the+Browser+library+by+Chris+Schuld+for+detection+of+bots.+Recommended.%0D%0A%09More+exact+detection+-+This+method+uses+%22browscap%22+data+for+bots+detection.+Very+exact+and+very+slow+method.+If+browscap+not+defined+in+your+php.ini%2C+this+method+is+unavailable.%0D%0A%0D%0ADisplay+of+Currency%3A%0D%0A%0D%0A%09Auto+-+auto+detection+of+currency+from+blog+settings.%0D%0A%09USD+-+Forcing+the+display+of+currency+to+U.S.+dollars.%0D%0A%09EUR+-+Forcing+the+display+of+currency+to+Euro.%0D%0A%0D%0AAds+Place+creation+and+configuration%0D%0AGo+to+your+list+of+Ads+Places+%28Ads+-%26gt%3B+Ads+Places%29+and+click+the+%22Add+New+Place%22.%C2%A0+In+the+opened+editor+window+configure+current+Ad+Place.%0D%0A%0D%0AEnter+a+name+and+a+description+of+the+Ads+Place.+In+principle%2C+it+is+not+mandatory+parameters%2C+because+these+parameters+don%27t+influence+anything%2C+but+experience+suggests+that+after+a+while+all+IDs+usually+will+be+forgotten%C2%A0+and+such+information+may+be+useful.%0D%0A%0D%0AAds+Place+Size+-+in+this+version+is+only+for+informational+purposes+only%2C+but+in+future+I+plan+to+use+this+option.+It+is+desirable+to+expose+the+real+size.%0D%0A%0D%0AAds+Place+Patch+-+it%27s+an+ad+that+will+appear+in+the+event+that+the+logic+of+basic+ads+outputing+of+this+Ads+Place+on+the+current+page+will+not+be+able+to+choose+a+single+basic+ad+for+displaying.+For+example%2C+if+all+basic+announcements+are+set+to+displaying+only+on+archives+pages+or+single+pages%2C+in+this+case+the+patch+ad+of+Ads+Place+will+be+shown+on+the+Home+page.+Conveniently+to+use+the+patch+ad+of+Ads+Place+where+you+sell+the+advertising+place+for+a+limited+time+-+after+the+time+expiration+of+ordered+ad+will+appear+patch+ad.+It+may+be+a+banner+leading+to+your+page+of+advertisement+publication+costs+or+a+banner+from+AdSense.%0D%0A%0D%0APatch+can+be+defined%3A%0D%0A%0D%0A%09as+combination+of+the+image+URL+and+target+page+URL%0D%0A%09as+HTML+code+or+javascript+code%0D%0A%09as+name+of+Google+DoubleClick+for+Publishers+%28DFP%29+block%0D%0A%0D%0AIf+you+select+the+first+option+%28image+mode%29%2C+tools+to+download%2Fchoosing+of+downloaded+image+banner+become+available+for+you.%0D%0A%0D%0ACodes+-+as+Ads+Place+can+be+inserted+into+the+page+code+not+only+as+widget%2C+but+as+a+short+code+or+by+using+function%2C+you+can+use+code+%22before%22+and+%22after%22+for+centering+or+alignment+of+Ads+Place+on+the+place+of+inserting+or+for+something+else+you+need.+Use+HTML+tags.%0D%0AAdvertisment+creation+and+configuration%0D%0AGo+to+the+list+of+Ads+Places+%28Ads+-%26gt%3B+Ads+Places%29%2C+move+the+mouse+to+the+desired+Ads+Place%2C+select+in+the+row+menu+that+appears+%22View+Ads%22+for+the+transition+to+the+advertisments+list+of+this+Ads+Place+or+%22Add+Ad%22+for+the+transition+to+the+editor+of+a+new+ad.+If+you+went+to+the+list+of+ads%2C+click+on+%22Add+New+Ad%22.%0D%0A%0D%0AEnter+a+name+and+a+description+of+the+advertisement.+These+parameters+are+optional%2C+because+don%27t+influence+anything%2C+but+help+in+the+visual+identification+of+the+ad+%28do+not+forget+which+is+which%29.%0D%0A%0D%0AAd+Code+-+code+can+be+defined+as+a+combination+of+the+image+URL+and+target+page+URL%2C+or+as+HTML+code%2C+javascript+code%2C+or+PHP+code+%28for+PHP-code+don%27t+forget+to+set+the+checkbox+labeled+%22This+code+of+ad+contains+PHP+script%29.+If+you+select+the+first+option+%28image+mode%29+you+can+keep+statistics+of+clicks+and+also+tools+for+uploading%2Fselecting+the+downloaded+image+banner+becomes+available+to+you.%0D%0A%0D%0ARestrictions+of+Advertisment+Showing%0D%0A%0D%0AAd+Weight+-+coefficient+of+frequency+of+show+of+the+advertisement+for+one+cycle+of+advertisements+rotation.%0D%0A0+-+ad+is+inactive%2C+1+-+minimal+activity+of+this+advertisment%2C+10+-+maximal+activity+of+this+ad.%0D%0A%0D%0ARestrictions+by+the+type+of+pages+-+select+restrictions%3A%0D%0A%0D%0A%09Show+ad+on+all+pages+of+blog%0D%0A%09Show+ad+only+on+pages+of+this+type+-+ad+will+appear+only+on+the+pages+of+selected+types%0D%0A%09Show+ad+only+in+certain+posts+-+ad+will+be+shown+only+on+single+posts+pages+with+the+given+IDs+%28ID+items+separated+by+commas%2C+no+spaces%29%0D%0A%0D%0AAdditional+restrictions%0D%0A%0D%0A%09Show+ad+only+in+single+posts+or+categories+archives+of+certain+categories+-+ad+will+be+shown+only+on+single+posts+pages+or+category+archive+pages+of+the+specified+categories%0D%0A%09Show+ad+only+in+single+posts+or+authors+archives+of+certain+authors+-+ad+will+be+shown+only+on+single+posts+pages+or+author+archive+pages+of+the+specified+authors%0D%0A%0D%0AUse+the+schedule+for+this+ad+-+if+necessary%2C+select+checkbox+labeled+%22Use+the+schedule+for+this+ad%22+and+set+start+and+finish+dates+of+ad+campaign.%0D%0A%0D%0AUse+limitation+by+hits+-+Use+this+parameter+for+limiting+displaying+of+ad+by+hits.%0D%0A%0D%0AUse+limitation+by+clicks+-+Use+this+parameter+for+limiting+displaying+of+ad+by+clicks.%0D%0A%0D%0APrices+-+your+prices+for+that+ad.%0D%0A%0D%0A%09Ad+placement+per+month+-+used+only+for+scheduled+ads.%0D%0A%09Per+Thousand+Hits+-+Not+only+humans+visit+your+blog%2C+bots+and+crawlers+too.+In+order+not+to+deceive+an+advertiser%2C+you+must+enable+the+detection+of+bots+and+crawlers.%0D%0A%09Per+Click+-+To+calculate+the+earnings+on+clicks%2C+you+must+enable+counting+of+clicks+for+that+ad.%0D%0A%0D%0AAds+Zone+creation+and+configuration%0D%0AAds+Zone+is+selector+that+used+to+select+the+appropriate+Ads+Place+for+each+type+of+displayed+page.%0D%0A%0D%0AGo+to+your+list+of+Ads+Zones+%28Ads+-%26gt%3B+Ads+Zones%29+and+click+the+%22Add+New+Zone%22.%C2%A0+In+the+opened+editor+window+configure+current+Ads+Zone.%0D%0A%0D%0AEnter+a+name+and+a+description+of+the+Ads+Zone.%0D%0A%0D%0ASelect+default+Ads+Place.%0D%0A%0D%0ASelect+the+appropriate+Ads+Places+for+each+type+of+page%2C+category+or+author+or+leave+%22Default%22+value.+You+can+block+displaying+Ads+Place+on+needed+type+of+page+selecting+%22None%22+value.%0D%0AAds+Block+creation+and+configuration%0D%0AAds+Block+used+for+outputting+block+of+ads.%0D%0A%0D%0AGo+to+your+list+of+Ads+Blocks+%28Ads+-%26gt%3B+Ads+Blocks%29+and+click+the+%22Add+New+Block%22.%C2%A0+In+the+opened+editor+window+configure+current+Ads+Block.%0D%0A%0D%0AEnter+a+name+and+a+description+of+the+Ads+Block.%0D%0A%0D%0AEnter+number+of+lines+and+columns+of+Ads+Block.+After+changing+these+properties+you+must+save+Ads+Block+settings+before+using+Ads+Block+Editor.%0D%0A%0D%0AConfigure+styles+for+Ads+Block+and+Block%27s+items.+Use+Stylesheet+rules+for+defining+these+properties.+For+example%3A+url%28sheep.png%29+center+bottom+no-repeat+for+background+property+or+5px+solid+red+for+border+property.%0D%0A%0D%0AImportant+Note%3A+As+the+Ads+Block+is+the+regular+structure%2C+predefined+styles+of+individual+items+for+drawing+Ads+Block%27s+elements+aren%27t+used.+Define+styles+for+Ads+Block+Items+on+Ads+Block+Editor+page%21%0D%0A%0D%0ACustomize+Ads+Block+structure+%28select+Ads+Place+or+Ads+Zone+or+Single+Ad+for+each+item+of+block%29.%0D%0AUsage%0D%0AThere+are+three+variants+for+output%3A+widgets%2C+short+codes%2C+the+function...+and+auto+inserting...%0D%0AWidgets%0D%0AGo+to+the+widgets+page+%28Appearance-%26gt%3BWidgets%29.+In+the+area+of+available+widgets+locate+widget+%22Ads+Place%22+and+drag+it+to+the+necessary+sidebar.+You+can+also+use+widgets+%22Ads+Zone%22+and+%22Single+Ad%22.%0D%0A%0D%0AConfigure+your+widget%3A%0D%0A%0D%0A%09Title+-+title+of+widget.+If+not+needed%2C+leave+empty.%0D%0A%09Ads+Place+-+select+Ads+Place+from+a+list+of+all+Ads+Places.%0D%0A%09Hide+widget+style+-+in+some+theme+templates+it+is+necessary+for+the+sidebar+in+the+blog+header.%0D%0A%09Allow+using+previously+defined+%22before%22+and+%22after%22+codes+of+Ads+Place+-+these+are+the+codes+that+are+defined+for+each+Ads+Place+as+%22code+before%22+and+%22code+after%22.%0D%0A%0D%0AWidgets+%22Ads+Zone%22+and+%22Single+Ad%22+can+be+configured+in+the+same+way.%0D%0AShortcodes%0D%0AShortcode+%22sam%22+enables+you+to+insert+Ads+Place+anywhere+in+the+post%27s+content.%0D%0A%0D%0A%5Bstextbox+id%3D%22grey%22%5D%5Bsam+id%3D1+codes%3D%27false%27%5D%5B%2Fstextbox%5D%0D%0A%0D%0A%09id+-+ID+of+Ads+Place%0D%0A%09codes+-+allow+or+not+allow+to+use+Ads+Place+codes+%22before%22+and+%22after%22.+Default+%22false%22%0D%0A%0D%0AShortcode+%22sam_zone%22+enables+you+to+insert+Ads+Zone+anywhere+in+the+post%27s+content.%0D%0A%0D%0A%5Bstextbox+id%3D%22grey%22%5D%5Bsam_zone+id%3D1+codes%3D%27false%27%5D%5B%2Fstextbox%5D%0D%0A%0D%0A%09id+-+ID+of+Ads+Zone%0D%0A%09codes+-+allow+or+not+allow+to+use+Ads+Place+codes+%22before%22+and+%22after%22.+Default+%22false%22%0D%0A%0D%0AShortcode+%22sam_ad%22+enables+you+to+insert+Single+Ad+anywhere+in+the+post%27s+content.%0D%0A%0D%0A%5Bstextbox+id%3D%22grey%22%5D%5Bsam_ad+id%3D1+codes%3D%27false%27%5D%5B%2Fstextbox%5D%0D%0A%0D%0A%09id+-+ID+of+Ad%0D%0A%09codes+-+allow+or+not+allow+to+use+Ads+Place+codes+%22before%22+and+%22after%22.+Default+%22false%22%0D%0A%0D%0AShortcode+%22sam_block%22+enables+you+to+insert+Ads+Block+anywhere+in+the+post%27s+content.%0D%0A%0D%0A%5Bstextbox+id%3D%22grey%22%5D%5Bsam_block+id%3D1%5D%5B%2Fstextbox%5D%0D%0A%0D%0A%09id+-+ID+of+Ads+Zone%0D%0A%0D%0AOutput+functions%0D%0AIn+order+that+would+insert+Ads+in+any+place+of+theme+template%2C+use+the+drawAdsPlace%2C+drawAdsZone+or+drawAd+functions.%0D%0A%0D%0AOutput+functions+are+defined+as+follows%3A%0D%0A%0D%0A%5Bcrayon-4f46151c5aa1d+lang%3D%22php%22+title%3D%22Output+Functions%22+url%3D%27sam.functions.php%27%2F%5D%0D%0A%0D%0A%09args+-+array%2C+which+may+include+id+%28ID+of+Ads+Place%29+or%2Fand+name+%28the+name+of+Ads+Place%2C+not+recommended%29%0D%0A%09codes+-+bool%7Carray%2C+allow+or+not+allow+to+use+Ads+Place+codes+%22before%22+and+%22after%22.+Default+%22false%22.+If+bool+value%2C+codes+%27before%27+and+%27after%27+will+be+received+from+Ads+Place+record.+If+array+value%2C+codes+%27before%27+and+%27after%27+will+be+received+from+array.%0D%0A%0D%0A%5Bcrayon-4f46151c5af5f+lang%3D%22php%22+title%3D%22Usage%22+url%3D%27sam.usage.php%27%2F%5D%0D%0A%0D%0AAuto+Inserting%0D%0ADesigned+for+automatic+insertion+of+ad+codes+before+and+after+the+content+of+single+post.+Configuring+is+on+plugin+settings+page.%0D%0AMiscellaneous%0D%0AAt+first+glance%2C+it+might+seem+that+the+plugin+is+too+heavy+-+as+did+500+kb+codes.+But+do+not+be+terrified+ahead+of+time%2C+the+plugin+is+using+the+technology+of+saving+resources.+In+other+words%2C+in+the+Face+Side+is+loading+only+23+kb+of+codes%2C+of+which+21+kb+PHP-code+and+2+kb+javascript+code.+Everything+else+are+extentions+for+the+admin+mode%2C+and+even+then%2C+not+all+are+loading+en+masse%2C+but+only+if+necessary.%0D%0A%0D%0AVideo+Lessons%3A%0D%0A%0D%0A%5Bsvg+id%3D6%5D%0D%0ADonations%0D%0A%5Bstextbox+id%3D%22info%22+big%3D%22true%22%5DIf+you+have+found+this+plugin+useful%2C+please+consider+making+a+donation+to+help+support+future+development.+Your+support+will+be+much+appreciated.+Thank+you%21%0D%0A%0D%0AWarning%21+The+default+value+of+donation+is+%24200.+Don%27t+worry%21+This+is+not+my+appetite%2C+this+is+default+value+defined+by+Payoneer+service%2C+you+can+change+it+to+any+value+you+want%21%0D%0A%5B%2Fstextbox%5D%0D%0ADonations+List%0D%0AMany+thanks+to+everyone+who+supports+the+development+of+this+plugin%3A%0D%0A%0D%0AMichael+Kiepert%2C+Andrea+Vacondio%0D%0ADownload%0D%0A%5Bstextbox+id%3D%22download%22%5D%5Bmwpi_block+slug+%3D%22simple-ads-manager%22+mode%3D%22download%22%5DSimple+Ads+Manager+is+easy+to+use+plugin+providing+a+flexible+logic+of+displaying+advertisements.%5B%2Fmwpi_block%5D%5B%2Fstextbox%5D&amp;tags=ad%2Cadvertisement%2Cmanagement%2Cplugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=480</feedburner:origLink></item>
		<item>
		<title>Blogger plugin Simple Counters</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/iuZmGN1IV60/</link>
		<comments>http://www.simplelib.com/?p=463#comments</comments>
		<pubDate>Tue, 12 Oct 2010 10:48:19 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Blogger Widgets]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=463</guid>
		<description><![CDATA[
Wrote a new plugin for WordPress and not to deprive Blogger-bloggers, imagine the same thing for Blogger, developed on the basis of my jQuery plug-in Simple Counters. So, Simple Counters for Blogger-blog. The plugin is designed as a badge-informer. Ticker displays the number of subscribers to FeedBurner and followers on Twitter.
The plugin is fully customizable. [...]]]></description>
			<content:encoded><![CDATA[
<p>Wrote a new plugin for WordPress and not to deprive Blogger-bloggers, imagine the same thing for Blogger, developed on the basis of my jQuery plug-in Simple Counters. So, Simple Counters for Blogger-blog. The plugin is designed as a badge-informer. Ticker displays the number of subscribers to FeedBurner and followers on Twitter.</p>
<p>The plugin is fully customizable. Using custom plug-in parameters can customize the color of font, color and vector direction of the gradient background color and/or theme tips, icons for FeedBurner and Twitter, both for the badge, and for the tips, positioning badge on the browser screen, etc.</p>
<p>Working example of a plug-in can be found on my <a href="http://minimusx.blogspot.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/minimusx.blogspot.com?referer=');">test Blogger-blog</a>.<br />
<span id="more-463"></span></p>
<h3>Installation</h3>
<p>Share this plugin files on the hosting, which you use to store files for your Blogger-blog, for example, on <a href="http://fileave.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/fileave.com?referer=');">FileAve</a>.</p>
<p>Paste the following code in the header section of XML-template (Toolbar-&gt; Design-&gt; Edit HTML):</p>
<pre class="crayon-plain-tag"><code>&lt;script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js' type='text/javascript'/&gt;
&lt;script src='http://YOUR_FILE_HOST/jquery.qtip-1.0.0-rc3.min.js' type='text/javascript'/&gt;
&lt;script type='text/javascript'&gt;
	var scUserOptions = {
		position: 'right',
		delta: 0,
		dgv: 'vertical',
		feedBurner: {
			id: 'minimus',
			imgUrl: 'http://YOUR_FILE_HOST/feedburner.png',
			hint: 'Subscribe to &lt;strong&gt;&lt;data:blog.title/&gt;&lt;/strong&gt; to receive breaking news as well as receive other site updates!!',
			hintImg: 'http://YOUR_FILE_HOST/feedburner-hint.png'
		},
		twitter: {
			id: 'minimus',
			imgUrl: 'http://YOUR_FILE_HOST/twitter.png',
			hint: 'Share and discover what is happening right now, at the &lt;strong&gt;&lt;data:blog.title/&gt;&lt;/strong&gt;!&lt;br/&gt;Follow me on Twitter!',
			hintImg: 'http://YOUR_FILE_HOST/twitter-hint.png'
		}
	};
&lt;/script&gt;
&lt;script src='http://YOUR_FILE_HOST/excanvas.js' type='text/javascript'/&gt;
&lt;script src='http://YOUR_FILE_HOST/sc.js' type='text/javascript'/&gt;</code></pre></p>
<p>Do not forget to replace string <strong>YOUR_FILE_HOST</strong> to your real  hosting URL&#8230;</p>
<h3>Customization</h3>
<p>The user settings of plugin (scUserOptions):</p>
<ul>
<li><strong>position</strong> &#8211; right or left, output badge on the right or left of the browser window.</li>
<li><strong>delta</strong> &#8211; the numeric value in pixels. Negative value &#8211; offsets badge up from the middle line of the browser screen, positive &#8211; offsets down to specified number of pixels.</li>
<li><strong>dgv</strong> &#8211; the direction of the gradient background. horizontal &#8211; from left to right, vertical -from  top to bottom.</li>
<li><strong>color</strong> &#8211; the starting color of background gradient. Six hexadecimal digits (&#8216;#1c82d0&#8242;).</li>
<li><strong>colorTo</strong> &#8211; the final color of background gradient. Six hexadecimal digits (&#8216;#145181&#8242;).</li>
<li><strong>borderColor</strong> &#8211; translucent color (40%) of badge edges. Six hexadecimal digits (&#8216;#676767&#8242;).</li>
</ul>
<p><strong>Feedburner</strong>:</p>
<ul>
<li><strong>id</strong> &#8211; your Feedburner user id (http://feeds.feedburner.com/<strong>Simplelib</strong> &#8211; bold text is <strong>id</strong>)</li>
<li><strong>imgUrl</strong> &#8211; image URL for FeedBurner area of badge. 50&#215;50 pixels, transparent background, PNG. Even if the image has another size, it will be transformed (50-50)</li>
<li><strong>hint</strong> &#8211; Text or HTML-text for FeedBurner tip</li>
<li><strong>hintImg</strong> &#8211; image URL for FeedBurner tip. 40&#215;40 pixels, transparent background, PNG.</li>
</ul>
<p><strong>Twitter</strong>:</p>
<ul>
<li><strong>id</strong> &#8211; your Twitter id</li>
<li><strong>imgUrl</strong> &#8211; image URL for Twitter area of badge. 50&#215;50 pixels, transparent background, PNG. Even if the image has another size, it will be transformed (50-50)</li>
<li><strong>hint</strong> &#8211; Text or HTML-text for Twitter tip</li>
<li><strong>hintImg</strong> &#8211; image URL for Twitter tip. 40&#215;40 pixels, transparent background, PNG.</li>
</ul>
<p><strong> </strong> <div id='stb-box-2032' class='stb-warning_box' ><strong>Attention!</strong> In contrast to the WordPress plugin, Blogger plugin does <strong>not cache</strong> query results and displays the current values. This means that once a day, during the conversion values by FeedBurner, will be given zero value!</div></p>
<h3>Download</h3>
<p><div id='stb-box-7337' class='stb-download_box' >Note: There is a file embedded within this post, please visit this post to download the file.</div><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<p><!-- BlogGlue Plugin Error --><br />
<!-- This page cannot be linked by BlogGlue. --><br />
<!-- Our Servers could not connect to this page. --><br />
<!-- http://www.blogglue.com/profile/pages/ --></p>
<p style='text-align:left'>&copy; 2010 &#8211; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved.</p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=463&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=463&amp;md5=aed2e8d6365c1069e1c57281e37d3923" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/F9XunFDYR9wNVRJn-yEX7QeJtLY/0/da"><img src="http://feedads.g.doubleclick.net/~a/F9XunFDYR9wNVRJn-yEX7QeJtLY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/F9XunFDYR9wNVRJn-yEX7QeJtLY/1/da"><img src="http://feedads.g.doubleclick.net/~a/F9XunFDYR9wNVRJn-yEX7QeJtLY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/iuZmGN1IV60" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=463</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D463&amp;language=en_GB&amp;category=software&amp;title=Blogger+plugin+Simple+Counters&amp;description=Wrote+a+new+plugin+for+WordPress+and+not+to+deprive+Blogger-bloggers%2C+imagine+the+same+thing+for+Blogger%2C+developed+on+the+basis+of+my+jQuery+plug-in+Simple+Counters.+So%2C+Simple+Counters+for+Blogger-blog.+The+plugin+is+designed+as+a+badge-informer.+Ticker+displays+the+number+of+subscribers+to+FeedBurner+and+followers+on+Twitter.%0D%0A%0D%0AThe+plugin+is+fully+customizable.+Using+custom+plug-in+parameters+can+customize+the+color+of+font%2C+color+and+vector+direction+of+the+gradient+background+color+and%2For+theme+tips%2C+icons+for+FeedBurner+and+Twitter%2C+both+for+the+badge%2C+and+for+the+tips%2C+positioning+badge+on+the+browser+screen%2C+etc.%0D%0A%0D%0AWorking+example+of+a+plug-in+can+be+found+on+my+test+Blogger-blog.%0D%0A%0D%0AInstallation%0D%0AShare+this+plugin+files+on+the+hosting%2C+which+you+use+to+store+files+for+your+Blogger-blog%2C+for+example%2C+on+FileAve.%0D%0A%0D%0APaste+the+following+code+in+the+header+section+of+XML-template+%28Toolbar-%26gt%3B+Design-%26gt%3B+Edit+HTML%29%3A%0D%0A%0D%0A%5Bcrayon-4f46151c5de3f+lang%3D%22js%22+title%3D%22Simple+Counters%22+url%3D%27sc.code.js%27+%2F%5D%0D%0A%0D%0ADo+not+forget+to+replace+string+YOUR_FILE_HOST+to+your+real%C2%A0+hosting+URL...%0D%0ACustomization%0D%0AThe+user+settings+of+plugin+%28scUserOptions%29%3A%0D%0A%0D%0A%09position+-+right+or+left%2C+output+badge+on+the+right+or+left+of+the+browser+window.%0D%0A%09delta+-+the+numeric+value+in+pixels.+Negative+value+-+offsets+badge+up+from+the+middle+line+of+the+browser+screen%2C+positive+-+offsets+down+to+specified+number+of+pixels.%0D%0A%09dgv+-+the+direction+of+the+gradient+background.+horizontal+-+from+left+to+right%2C+vertical+-from%C2%A0+top+to+bottom.%0D%0A%09color+-+the+starting+color+of+background+gradient.+Six+hexadecimal+digits+%28%27%231c82d0%27%29.%0D%0A%09colorTo+-+the+final+color+of+background+gradient.+Six+hexadecimal+digits+%28%27%23145181%27%29.%0D%0A%09borderColor+-+translucent+color+%2840%25%29+of+badge+edges.+Six+hexadecimal+digits+%28%27%23676767%27%29.%0D%0A%0D%0AFeedburner%3A%0D%0A%0D%0A%09id+-+your+Feedburner+user+id+%28http%3A%2F%2Ffeeds.feedburner.com%2FSimplelib+-+bold+text+is+id%29%0D%0A%09imgUrl+-+image+URL+for+FeedBurner+area+of+badge.+50x50+pixels%2C+transparent+background%2C+PNG.+Even+if+the+image+has+another+size%2C+it+will+be+transformed+%2850-50%29%0D%0A%09hint+-+Text+or+HTML-text+for+FeedBurner+tip%0D%0A%09hintImg+-+image+URL+for+FeedBurner+tip.+40x40+pixels%2C+transparent+background%2C+PNG.%0D%0A%0D%0ATwitter%3A%0D%0A%0D%0A%09id+-+your+Twitter+id%0D%0A%09imgUrl+-+image+URL+for+Twitter+area+of+badge.+50x50+pixels%2C+transparent+background%2C+PNG.+Even+if+the+image+has+another+size%2C+it+will+be+transformed+%2850-50%29%0D%0A%09hint+-+Text+or+HTML-text+for+Twitter+tip%0D%0A%09hintImg+-+image+URL+for+Twitter+tip.+40x40+pixels%2C+transparent+background%2C+PNG.%0D%0A%0D%0A++%5Bstextbox+id%3D%22warning%22%5DAttention%21+In+contrast+to+the+WordPress+plugin%2C+Blogger+plugin+does+not+cache+query+results+and+displays+the+current+values.+This+means+that+once+a+day%2C+during+the+conversion+values+by+FeedBurner%2C+will+be+given+zero+value%21%5B%2Fstextbox%5D%0D%0ADownload%0D%0A%5Bstextbox+id%3D%22download%22%5D%5Bdownload+id%3D%2216%22%5D%5B%2Fstextbox%5D&amp;tags=Blogger%2CFeedBurner%2Cplugin%2CTwitter%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=463</feedburner:origLink></item>
		<item>
		<title>I’m back!</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/RkZhS1hP1jM/</link>
		<comments>http://www.simplelib.com/?p=415#comments</comments>
		<pubDate>Tue, 13 Jul 2010 14:44:43 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Live]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=415</guid>
		<description><![CDATA[
Ended  my short term vacation. Fresh and rested, I can go back to their work. I am again ready to answer your questions.
&#169; 2010, minimus. All rights reserved. 

]]></description>
			<content:encoded><![CDATA[
<p>Ended  my short term vacation. Fresh and rested, I can go back to their work. I am again ready to answer your questions.</p>
<p><p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-1.jpg' class='floatbox' rev='group: G3-2238 caption:`Hotel` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-1-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-2.jpg' class='floatbox' rev='group: G3-2238 caption:`Pool` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-2-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-3.jpg' class='floatbox' rev='group: G3-2238 caption:`Waterslides` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-3-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-4.jpg' class='floatbox' rev='group: G3-2238 caption:`Beach` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-4-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-5.jpg' class='floatbox' rev='group: G3-2238 caption:`Bananas` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-5-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-6.jpg' class='floatbox' rev='group: G3-2238 caption:`Village` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-6-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/a2010-7.jpg' class='floatbox' rev='group: G3-2238 caption:`Sea` caption2:`The rest`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/a2010-7-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777252, 2784655);" title="About">About</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777252, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://www.chadnicely.com/killer-donahoe-interview/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3449981" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.chadnicely.com/killer-donahoe-interview/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777252, 3449981);" title="One “KILLER” Interview, NO Holding Back!"> One “KILLER” Interview, NO Holding Back! </a> <span style="font-size:80% !important;">&nbsp;(Chad Nicely)</span> </li>
<li id="blogglue-cross-2"> <a href="http://rossjoyner.com/19466/i-didnt-come-with-baggage-i-came-with-a-trunk/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3861035" target="_blank" onclick="pageTracker._trackPageview('/outgoing/rossjoyner.com/19466/i-didnt-come-with-baggage-i-came-with-a-trunk/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777252, 3861035);" title="I Didn’t Come With Baggage, I Came With a Trunk!"> I Didn’t Come With Baggage, I Came With a Trunk! </a> <span style="font-size:80% !important;">&nbsp;(rossjoyner)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777252" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777252&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777252.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2010, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=415&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=415&amp;md5=059e3de4c72311bdef98e17c3e9456b7" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/SvAGSVpZLHFVj4IGshH_IoqcnB8/0/da"><img src="http://feedads.g.doubleclick.net/~a/SvAGSVpZLHFVj4IGshH_IoqcnB8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SvAGSVpZLHFVj4IGshH_IoqcnB8/1/da"><img src="http://feedads.g.doubleclick.net/~a/SvAGSVpZLHFVj4IGshH_IoqcnB8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/RkZhS1hP1jM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=415</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D415&amp;language=en_GB&amp;category=software&amp;title=I%26%238217%3Bm+back%21&amp;description=Ended++my+short+term+vacation.+Fresh+and+rested%2C+I+can+go+back+to+their+work.+I+am+again+ready+to+answer+your+questions.%0D%0A%0D%0A%5Bsvg+id%3D3%5D&amp;tags=rest%2Cvacation%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=415</feedburner:origLink></item>
		<item>
		<title>WordPress plugin Simple View. Howto</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/aZLuKtAhW5I/</link>
		<comments>http://www.simplelib.com/?p=376#comments</comments>
		<pubDate>Fri, 30 Apr 2010 20:13:43 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[manual]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=376</guid>
		<description><![CDATA[
In anticipation of the many questions about the plugin, I wrote a brief instruction on its use.
Concept
The concept of &#8220;Simple View&#8221; predefined galleries is very simple. Gallery is a collection of items, each item of the gallery, in turn, is a set of properties of the media object (image, video, HTML) needed for output by [...]]]></description>
			<content:encoded><![CDATA[
<p>In anticipation of the many questions about the plugin, I wrote a brief instruction on its use.</p>
<h4>Concept</h4>
<p>The concept of &#8220;Simple View&#8221; predefined galleries is very simple. Gallery is a collection of items, each item of the gallery, in turn, is a set of properties of the media object (image, video, HTML) needed for output by FloatBox.<span id="more-376"></span></p>
<h4>FloatBox Installation</h4>
<p>FloatBox pack is excluded from Simple View plugin package by FloatBox author&#8217;s request. You  need to download the FloatBox package from its home page and install it manually.  However, I have tried best to automate  the installation process.</p>
<p>Immediately  after activating the plugin, go to &#8220;FloatBox Installation&#8221; and do package  installation. To do this, click  &#8220;FloatBox Download Page&#8221; and download the package to your computer, then  select the downloaded archive file and click Upload and Install&#8221;. File will be uploaded and installed automatically.</p>
<p>If you already have previously uploaded FloatBox archive file on server  or FloatBox archive file was uploaded by FTP, just select this file and  click &#8216;Install&#8217;.</p>
<p>Do not  forget to configure FloatBox on its settings page.</p>
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-install.jpg' class='floatbox' rev='group: G2-2225 caption:`FloatBox Uploading and Installation` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-install-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin.jpg' class='floatbox' rev='group: G2-2225 caption:`FloatBox Options` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<h4>Working with Predefined Galleries</h4>
<p>To create a new gallery, go to &#8220;New Gallery&#8221; and fill in the properties of the new gallery. Save it and go to &#8220;Galleries&#8221;. Now you can create items of the gallery. To do this, click &#8220;View Items&#8221; on command panel of gallery row  and, when &#8220;Gallery Items&#8221; page loads, click &#8220;New Item&#8221;.</p>
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-galleries.jpg' class='floatbox' rev='group: G2-4252 caption:`Galleries List` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-galleries-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-gallery-items.jpg' class='floatbox' rev='group: G2-4252 caption:`Gallery Items List` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-gallery-items-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-item-edit.jpg' class='floatbox' rev='group: G2-4252 caption:`Gallery Item Editor` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-item-edit-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<p>On &#8220;New Item&#8221; page you can set captions of item (FloatBox can serve two captions. First Caption located in the area of  control panel. Second Caption (Caption 2) located above the area of  media content.), codes to output before and after link.</p>
<p>Also you can select previously uploaded or upload image and thumbnail for it. If &#8220;Auto Thumbnailing&#8221; is allowed, thumbnail for uploaded image will be created automatically.</p>
<h4>Shortcodes</h4>
<p><strong>For any media objects</strong>:</p>
<div id='stb-box-3604' class='stb-grey_box' >[sview  source="http://www.simplelib.com/images/posts/sv-admin.jpg"  caption="Simple View Admin Page" group="admin"]Text or  Thumbnail[/sview]</div>
<ul>
<li><strong>source</strong> &#8211; media source (image, video or another site)</li>
<li><strong>caption</strong> &#8211; caption of media</li>
<li><strong>group</strong> &#8211; if you want to place several galleries on one page,  set group value for each group of media</li>
</ul>
<p><strong>For predefined objects</strong>:</p>
<div id='stb-box-7348' class='stb-grey_box' >[svg id=1]<br />
[svg id=1 only="1,2,5"]<br />
[svg id=1 exclude="1,2,5" group="anyName"]<br />
[svg item=1]<br />
</div>
<ul>
<li><strong>id</strong> &#8211; ID of predefined gallery. Gallery mode.</li>
<li><strong>only</strong> &#8211; show only specified items from predefined gallery. Gallery mode.</li>
<li><strong>exclude</strong> &#8211; do not show specified items. Gallery mode.</li>
<li><strong>group</strong> &#8211; group name. Several galleries with same group name will be shown as one gallery in FloatBox window. Gallery mode.</li>
<li><strong>item</strong> &#8211; show single item by item ID. Item mode.</li>
</ul>
<h4>Insertion Dialogs</h4>
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert.jpg' class='floatbox' rev='group: G2-6295 caption:`Insert Simple View Dialog` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert-2.jpg' class='floatbox' rev='group: G2-6295 caption:`Insert Simple View Dialog. Extended tab` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-2-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert-3.jpg' class='floatbox' rev='group: G2-6295 caption:`Insert Simple View Gallery Dialog` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-3-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<p>﻿Basic Settings</p>
<ul>
<li><strong>Source</strong> &#8211; media source (image, video or another site). URL only.</li>
<li><strong>Caption</strong> &#8211; caption of media.</li>
<li><strong>Content</strong> &#8211; Text, URL of thumbnail or YouTube ID.</li>
<li><strong>Content Type</strong> &#8211; sets type of content.</li>
</ul>
<p>Extended Settings</p>
<ul>
<li><strong>Group</strong> &#8211; if you want to place several galleries on one page, set group value for  each group of media.</li>
</ul>
<p>Predefined Galleries</p>
<ul>
<li><strong>ID</strong> &#8211; ID of gallery (Gallery Mode) or single item (Item Mode)</li>
<li><strong>Gallery Content Type</strong> &#8211; ID modes selector</li>
<li><strong>Items</strong> &#8211; items IDs for show only or exclude from show</li>
<li><strong>Only or Exclude Items</strong> &#8211; only-exclude modes selector</li>
</ul>
<p><!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777253, 2784655);" title="About">About</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2731782" target="_blank" onclick="pageTracker._trackPageview('/outgoing/thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777253, 2731782);" title="The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness"> The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness </a> <span style="font-size:80% !important;">&nbsp;(xbgxxx)</span> </li>
<li id="blogglue-cross-2"> <a href="http://rossjoyner.com/12721/simple-systems-in-blog-writing/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3806115" target="_blank" onclick="pageTracker._trackPageview('/outgoing/rossjoyner.com/12721/simple-systems-in-blog-writing/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777253, 3806115);" title="Simple Systems In Blog Writing"> Simple Systems In Blog Writing </a> <span style="font-size:80% !important;">&nbsp;(rossjoyner)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777253" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777253&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777253.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2010, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=376&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=376&amp;md5=c0b0ab53100878a3c79a1d7f68481e7f" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/RuO6b2iQyeJPE0-TY9q7Vm7A1XY/0/da"><img src="http://feedads.g.doubleclick.net/~a/RuO6b2iQyeJPE0-TY9q7Vm7A1XY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RuO6b2iQyeJPE0-TY9q7Vm7A1XY/1/da"><img src="http://feedads.g.doubleclick.net/~a/RuO6b2iQyeJPE0-TY9q7Vm7A1XY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/aZLuKtAhW5I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=376</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D376&amp;language=en_GB&amp;category=software&amp;title=WordPress+plugin+Simple+View.+Howto&amp;description=In+anticipation+of+the+many+questions+about+the+plugin%2C+I+wrote+a+brief+instruction+on+its+use.%0D%0AConcept%0D%0AThe+concept+of+%22Simple+View%22+predefined+galleries+is+very+simple.+Gallery+is+a+collection+of+items%2C+each+item+of+the+gallery%2C+in+turn%2C+is+a+set+of+properties+of+the+media+object+%28image%2C+video%2C+HTML%29+needed+for+output+by+FloatBox.%0D%0AFloatBox+Installation%0D%0AFloatBox+pack+is+excluded+from+Simple+View+plugin+package+by+FloatBox+author%27s+request.+You++need+to+download+the+FloatBox+package+from+its+home+page+and+install+it+manually.++However%2C+I+have+tried+best+to+automate++the+installation+process.%0D%0A%0D%0AImmediately++after+activating+the+plugin%2C+go+to+%22FloatBox+Installation%22+and+do+package++installation.+To+do+this%2C+click++%22FloatBox+Download+Page%22+and+download+the+package+to+your+computer%2C+then++select+the+downloaded+archive+file+and+click+Upload+and+Install%22.+File+will+be+uploaded+and+installed+automatically.%0D%0A%0D%0AIf+you+already+have+previously+uploaded+FloatBox+archive+file+on+server++or+FloatBox+archive+file+was+uploaded+by+FTP%2C+just+select+this+file+and++click+%27Install%27.%0D%0A%0D%0ADo+not++forget+to+configure+FloatBox+on+its+settings+page.%0D%0A%0D%0A%5Bsvg+id%3D2+only%3D%225%2C7%22%5D%0D%0AWorking+with+Predefined+Galleries%0D%0ATo+create+a+new+gallery%2C+go+to+%22New+Gallery%22+and+fill+in+the+properties+of+the+new+gallery.+Save+it+and+go+to+%22Galleries%22.+Now+you+can+create+items+of+the+gallery.+To+do+this%2C+click+%22View+Items%22+on+command+panel+of+gallery+row%C2%A0+and%2C+when+%22Gallery+Items%22+page+loads%2C+click+%22New+Item%22.%0D%0A%0D%0A%5Bsvg+id%3D2+only%3D%228%2C9%2C10%22%5D%0D%0A%0D%0AOn+%22New+Item%22+page+you+can+set+captions+of+item+%28FloatBox+can+serve+two+captions.+First+Caption+located+in+the+area+of++control+panel.+Second+Caption+%28Caption+2%29+located+above+the+area+of++media+content.%29%2C+codes+to+output+before+and+after+link.%0D%0A%0D%0AAlso+you+can+select+previously+uploaded+or+upload+image+and+thumbnail+for+it.+If+%22Auto+Thumbnailing%22+is+allowed%2C+thumbnail+for+uploaded+image+will+be+created+automatically.%0D%0AShortcodes%0D%0AFor+any+media+objects%3A%0D%0A%0D%0A%5Bsgreybox%5D%5Bsview++source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fsv-admin.jpg%22++caption%3D%22Simple+View+Admin+Page%22+group%3D%22admin%22%5DText+or++Thumbnail%5B%2Fsview%5D%5B%2Fsgreybox%5D%0D%0A%0D%0A%09source+-+media+source+%28image%2C+video+or+another+site%29%0D%0A%09caption+-+caption+of+media%0D%0A%09group+-+if+you+want+to+place+several+galleries+on+one+page%2C++set+group+value+for+each+group+of+media%0D%0A%0D%0AFor+predefined+objects%3A%0D%0A%0D%0A%5Bsgreybox%5D%5Bsvg+id%3D1%5D%0D%0A%5Bsvg+id%3D1+only%3D%221%2C2%2C5%22%5D%0D%0A%5Bsvg+id%3D1+exclude%3D%221%2C2%2C5%22+group%3D%22anyName%22%5D%0D%0A%5Bsvg+item%3D1%5D%0D%0A%5B%2Fsgreybox%5D%0D%0A%0D%0A%09id+-+ID+of+predefined+gallery.+Gallery+mode.%0D%0A%09only+-+show+only+specified+items+from+predefined+gallery.+Gallery+mode.%0D%0A%09exclude+-+do+not+show+specified+items.+Gallery+mode.%0D%0A%09group+-+group+name.+Several+galleries+with+same+group+name+will+be+shown+as+one+gallery+in+FloatBox+window.+Gallery+mode.%0D%0A%09item+-+show+single+item+by+item+ID.+Item+mode.%0D%0A%0D%0AInsertion+Dialogs%0D%0A%5Bsvg+id%3D2+only%3D%2211%2C12%2C13%22%5D%0D%0A%0D%0A%EF%BB%BFBasic+Settings%0D%0A%0D%0A%09Source+-+media+source+%28image%2C+video+or+another+site%29.+URL+only.%0D%0A%09Caption+-+caption+of+media.%0D%0A%09Content+-+Text%2C+URL+of+thumbnail+or+YouTube+ID.%0D%0A%09Content+Type+-+sets+type+of+content.%0D%0A%0D%0AExtended+Settings%0D%0A%0D%0A%09Group+-+if+you+want+to+place+several+galleries+on+one+page%2C+set+group+value+for++each+group+of+media.%0D%0A%0D%0APredefined+Galleries%0D%0A%0D%0A%09ID+-+ID+of+gallery+%28Gallery+Mode%29+or+single+item+%28Item+Mode%29%0D%0A%09Gallery+Content+Type+-+ID+modes+selector%0D%0A%09Items+-+items+IDs+for+show+only+or+exclude+from+show%0D%0A%09Only+or+Exclude+Items+-+only-exclude+modes+selector%0D%0A&amp;tags=manual%2Cplugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=376</feedburner:origLink></item>
		<item>
		<title>WordPress plugin Simple View</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/OkBv9JaUaiU/</link>
		<comments>http://www.simplelib.com/?p=122#comments</comments>
		<pubDate>Tue, 09 Mar 2010 21:06:15 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=122</guid>
		<description><![CDATA[This plugin is Wordpress shell for javascript FloatBox library by Byron McGregor. FloatBox is similar to Lightview, Lightbox, Shadowbox, Fancybox, Thickbox, etc.]]></description>
			<content:encoded><![CDATA[
<p>This plugin is WordPress shell for javascript <strong><a href="http://randomous.com/floatbox/home" onclick="pageTracker._trackPageview('/outgoing/randomous.com/floatbox/home?referer=');">FloatBox</a></strong> library by <a href="http://randomous.com/tools/floatbox/" onclick="pageTracker._trackPageview('/outgoing/randomous.com/tools/floatbox/?referer=');">Byron McGregor</a>. Floatbox is a javascript library for displaying windowed content over  top of web pages. It can be considered a &#8216;lightbox clone&#8217; (Lightview, Lightbox, Shadowbox, Fancybox, Thickbox, etc.) with great image gallery  capabilities, but also extends that model with support for all types of  content and strong programmability for &#8216;smart&#8217;, interactive content. Floatbox is highly customizable, easy to deploy, and very robust and  reliable across all modern browsers.</p>
<p><a href="http://forum.simplelib.com/forumdisplay.php?11-Simple-View" onclick="pageTracker._trackPageview('/outgoing/forum.simplelib.com/forumdisplay.php?11-Simple-View&amp;referer=');">Support Forum for this plugin</a>.<br />
<span id="more-122"></span><br />
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-window.jpg' class='floatbox' rev='group: G2-9853 caption:`FloatBox Window` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-window-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-install.jpg' class='floatbox' rev='group: G2-9853 caption:`FloatBox Uploading and Installation` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-install-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-admin.jpg' class='floatbox' rev='group: G2-9853 caption:`Simple View Options` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-admin-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin.jpg' class='floatbox' rev='group: G2-9853 caption:`FloatBox Options` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-galleries.jpg' class='floatbox' rev='group: G2-9853 caption:`Galleries List` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-galleries-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-gallery-items.jpg' class='floatbox' rev='group: G2-9853 caption:`Gallery Items List` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-gallery-items-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-item-edit.jpg' class='floatbox' rev='group: G2-9853 caption:`Gallery Item Editor` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-item-edit-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p></p>
<h2>Examples</h2>
<p><strong>Images</strong> (thumbnails content):</p>
<p style="text-align: center;"><a href='http://www.simplelib.com/images/posts/bmw/bmw-x5.jpg' class='floatbox' title='BMW X5' rev='group:bmw' ><img style="margin: 5px;" src="http://www.simplelib.com/images/posts/bmw/bmw-x5-mini.jpg" alt="BMW X5" width="120" height="90" /></a> <a href='http://www.simplelib.com/images/posts/bmw/bmw-6.jpg' class='floatbox' title='BMW 6' rev='group:bmw' ><img style="margin: 5px;" src="http://www.simplelib.com/images/posts/bmw/bmw-6-mini.jpg" alt="BMW 6" width="120" height="75" /></a> <a href='http://www.simplelib.com/images/posts/bmw/bmw-x6.jpg' class='floatbox' title='BMW X6' rev='group:bmw' ><img style="margin: 5px;" src="http://www.simplelib.com/images/posts/bmw/bmw-x6-mini.jpg" alt="BMW X6" width="120" height="90" /></a></p>
<p><strong>Images</strong> (text content):</p>
<ul>
<li> <a href='http://www.simplelib.com/images/posts/bmw/bmw-6.jpg' class='floatbox' title='' rev='group:text' >BMW 6</a></li>
<li> <a href='http://www.simplelib.com/images/posts/bmw/bmw-x6.jpg' class='floatbox' title='BMW X6' rev='group:text' >BMW X6</a></li>
</ul>
<p><strong>Video</strong> (YouTube ID content):</p>
<p style="text-align: center;"><a href='http://www.youtube.com/watch?v=Q2DwAv3vunI' class='floatbox' title='BMW X6' rev='group:video'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=Q2DwAv3vunI&amp;referer=');"><img style="margin: 5px;" src="http://i.ytimg.com/vi/Q2DwAv3vunI/default.jpg" alt="BMW X6" width="120" height="90" /></a> <a href='http://www.youtube.com/watch?v=04DSXRelWlg' class='floatbox' title='BMW X6 ActiveHybrid' rev='group:video'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=04DSXRelWlg&amp;referer=');"><img style="margin: 5px;" src="http://i.ytimg.com/vi/04DSXRelWlg/default.jpg" alt="BMW X6" width="120" height="90" /></a></p>
<p><strong>Video</strong> (text content):</p>
<ul>
<li> <a href='http://www.youtube.com/watch?v=XG2vJBEQJn0' class='floatbox' title='Metallica. No Leaf Clover' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/www.youtube.com/watch?v=XG2vJBEQJn0&amp;referer=');">YouTube</a></li>
<li> <a href='http://video.yahoo.com/watch/1110057/4055094' class='floatbox' title='Andy McKee - Ebon Coast' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/video.yahoo.com/watch/1110057/4055094?referer=');">Yahoo</a></li>
<li> <a href='http://www.vimeo.com/1211060' class='floatbox' title='www.wherethehellismatt.com' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/www.vimeo.com/1211060?referer=');">Vimeo</a></li>
<li> <a href='http://video.google.com/googleplayer.swf?docId=1352016870638076087&amp;hl=en&amp;playerMode=mini' class='floatbox' title='While My Ukelele Gently Weeps' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/video.google.com/googleplayer.swf?docId=1352016870638076087_amp_hl=en_amp_playerMode=mini&amp;referer=');">Google Video</a></li>
<li> <a href='http://www.metacafe.com/fplayer/947767/natural_wonders.swf' class='floatbox' title='Natural Wonders' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/www.metacafe.com/fplayer/947767/natural_wonders.swf?referer=');">Metacafe</a></li>
<li> <a href='http://www.dailymotion.com/swf/k8mRGOgKOiUjxWg4TB' class='floatbox' title='Adrian Belew - Oh, Daddy' rev='group:pix'  onclick="pageTracker._trackPageview('/outgoing/www.dailymotion.com/swf/k8mRGOgKOiUjxWg4TB?referer=');">Dailymotion</a></li>
</ul>
<p><strong>Predefined Galleries</strong> (version 1.0+):<br />
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/bmw_357.jpg' class='floatbox' rev='group: G1-8080 caption:`BMW X6 ActiveHybrid Engine` caption2:`BMW X6`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/bmw_357-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/bmw_332.jpg' class='floatbox' rev='group: G1-8080 caption:`BMW X6 Back` caption2:`BMW X6`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/bmw_332-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/bmw_351.jpg' class='floatbox' rev='group: G1-8080 caption:`BMW X6 ActiveHybrid` caption2:`BMW X6`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/bmw_351-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p></p>
<h2>How to install</h2>
<ul>
<li>Upload plugin folder to WordPress <em>/wp-content/plugins</em> folder</li>
<li>Activate plugin</li>
<li>Go to FloatBox Installation page and install FloatBox library.</li>
<li>Enter License Key on plugin settings page. Floatbox is protected by copyright and is released under the <a rev="width:800 height:92% showNewWindow:true  closeOnNewWindow:true controlsPos:tr newWindowLinkPos:tc" href="http://creativecommons.org/licenses/by-nc-nd/3.0/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/creativecommons.org/licenses/by-nc-nd/3.0/?referer=');">Creative Commons Attribution-Noncommercial-No Derivative  Works 3.0 Unported License</a>. Without a license key present, the software will periodically display a  registration reminder during use.</li>
<li>Customise plugin to your taste. All FloatBox parameters are represented in the plugin.</li>
</ul>
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-install.jpg' class='floatbox' rev='group: G2-3046 caption:`FloatBox Uploading and Installation` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-install-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-admin.jpg' class='floatbox' rev='group: G2-3046 caption:`Simple View Options` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-admin-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin.jpg' class='floatbox' rev='group: G2-3046 caption:`FloatBox Options` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-fb-admin-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<h2>How to use</h2>
<p>To insert FloatBox object to your post&#8217;s content use plugin shortcodes or plugin insertion dialog.</p>
<p>More howto read <a title="Simple View Howto" href="http://www.simplelib.com/?p=376" target="_self">here</a>.</p>
<p><strong>Shortcodes</strong>:</p>
<div id='stb-box-1957' class='stb-grey_box' >[sview source="http://www.simplelib.com/images/posts/sv-admin.jpg" caption="Simple View Admin Page" group="admin"]Text or Thumbnail[/sview]</div>
<ul>
<li><strong>source</strong> &#8211; media source (image, video or another site)</li>
<li><strong>caption</strong> &#8211; caption of media</li>
<li><strong>group</strong> &#8211; if you want to place several galleries on one page, set group value for each group of media</li>
</ul>
<p><strong>For predefined objects</strong>:</p>
<div id='stb-box-2546' class='stb-grey_box' >[svg id=1]<br />
[svg id=1 only="1,2,5"]<br />
[svg id=1 exclude="1,2,5" group="anyName"]<br />
[svg item=1]<br />
</div>
<ul>
<li><strong>id</strong> &#8211; ID of predefined gallery. Gallery mode.</li>
<li><strong>only</strong> &#8211; show only specified items from predefined gallery.  Gallery mode.</li>
<li><strong>exclude</strong> &#8211; do not show specified items. Gallery mode.</li>
<li><strong>group</strong> &#8211; group name. Several galleries with same group name  will be shown as one gallery in FloatBox window. Gallery mode.</li>
<li><strong>item</strong> &#8211; show single item by item ID. Item mode.</li>
</ul>
<p><strong>Insertion Dialogs:</strong></p>
<p style="text-align:center"><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert.jpg' class='floatbox' rev='group: G2-3782 caption:`Insert Simple View Dialog` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert-2.jpg' class='floatbox' rev='group: G2-3782 caption:`Insert Simple View Dialog. Extended tab` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-2-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a><a href='http://www.simplelib.com/wp-content/sv-galleries/sv-insert-3.jpg' class='floatbox' rev='group: G2-3782 caption:`Insert Simple View Gallery Dialog` caption2:`Simple View`' ><img src="http://www.simplelib.com/wp-content/sv-galleries/sv-insert-3-thumb.jpg" style="padding: 0px; margin: 5px; border: 1px solid #000000" /></a></p>
<p>Basic Settings</p>
<ul>
<li><strong>Source</strong> &#8211; media source (image, video or another site). URL only.</li>
<li><strong>Caption</strong> &#8211; caption of media.</li>
<li><strong>Content</strong> &#8211; Text, URL of thumbnail or YouTube ID.</li>
<li><strong>Content Type</strong> &#8211; sets type of content.</li>
</ul>
<p>Extended Settings</p>
<ul>
<li><strong>Group</strong> &#8211; if you want to place several galleries on one page, set group value for  each group of media.</li>
</ul>
<p>Predefined Galleries</p>
<ul>
<li><strong>ID</strong> &#8211; ID of gallery (Gallery Mode) or single item (Item Mode)</li>
<li><strong>Gallery Content Type</strong> &#8211; ID modes selector</li>
<li><strong>Items</strong> &#8211; items IDs for show only or exclude from show</li>
<li><strong>Only or Exclude Items</strong> &#8211; only-exclude modes selector</li>
</ul>
<h2>FloatBox Features</h2>
<p>You can read about all FloatBox features <a href="http://randomous.com/floatbox/home" target="_blank" onclick="pageTracker._trackPageview('/outgoing/randomous.com/floatbox/home?referer=');">here</a>.</p>
<h2>Donations</h2>
<div id='stb-box-7730' class='stb-info_box' >If you have found this plugin useful, please consider making a <a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');">donation</a> to help support future development. Your support will be much appreciated. Thank you!<br />
<a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');"><img class="size-full wp-image-542 alignleft" style="margin-left: 5px; margin-top: 5px;" title="Donate Now!" src="http://www.simplelib.com/wp-content/uploads/2011/01/donate-now.png" alt="" width="100" height="34" /></a></p>
<p style="margin: 1px; font-size: 0.8em; line-height: 12px">Warning! The default value of donation is $200. Don&#8217;t worry! This is not my appetite, this is default value defined by Payoneer service, you can change it to any value you want!</p>
<p></div>
<h2>Download</h2>
<p><div id='stb-box-1043' class='stb-download_box' > <p><strong><a href='http://wordpress.org/extend/plugins/simple-view/' onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/simple-view/?referer=');">Simple View</a></strong> <br/>Wordpress shell for javascript <strong><a href="http://randomous.com/floatbox/home" onclick="pageTracker._trackPageview('/outgoing/randomous.com/floatbox/home?referer=');">FloatBox</a></strong> library  by <a href="http://randomous.com/tools/floatbox/" onclick="pageTracker._trackPageview('/outgoing/randomous.com/tools/floatbox/?referer=');">Byron McGregor</a>. FloatBox is similar to Lightview, Lightbox, Shadowbox, Fancybox,  Thickbox, etc.</p><p>Author: <a href="http://blogcoding.ru" onclick="pageTracker._trackPageview('/outgoing/blogcoding.ru?referer=');">minimus</a>, version: 1.0.12, updated: April 30, 2010, <br/>Requires WP version: 2.8 or higher, tested up to: 3.0.5.<br/><a href="http://downloads.wordpress.org/plugin/simple-view.1.0.12.zip" onclick="pageTracker._trackPageview('/outgoing/downloads.wordpress.org/plugin/simple-view.1.0.12.zip?referer=');">Download</a> (3 266 hits) <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/empty.png"/> (4 votes)</p></div><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777254, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777254, 2784655);" title="About">About</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2731782" target="_blank" onclick="pageTracker._trackPageview('/outgoing/thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777254, 2731782);" title="The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness"> The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness </a> <span style="font-size:80% !important;">&nbsp;(xbgxxx)</span> </li>
<li id="blogglue-cross-2"> <a href="http://www.does-seo-work.com/review-of-wordpress-traffic-getting-seo-plugin-from-jeff-johnson/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3777930" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.does-seo-work.com/review-of-wordpress-traffic-getting-seo-plugin-from-jeff-johnson/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777254, 3777930);" title="Review of WordPress Traffic Getting SEO Plugin from Jeff Johnson"> Review of WordPress Traffic Getting SEO Plugin from Jeff Johnson </a> <span style="font-size:80% !important;">&nbsp;(Does SEO Work)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777254" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777254&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777254.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2010 &#8211; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=122&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=122&amp;md5=0d2ad846450d1c7f34ee782cca87a06b" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/9h32DKnoKRbuxwPoX8ENYAMkUg4/0/da"><img src="http://feedads.g.doubleclick.net/~a/9h32DKnoKRbuxwPoX8ENYAMkUg4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/9h32DKnoKRbuxwPoX8ENYAMkUg4/1/da"><img src="http://feedads.g.doubleclick.net/~a/9h32DKnoKRbuxwPoX8ENYAMkUg4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/OkBv9JaUaiU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=122</wfw:commentRss>
		<slash:comments>20</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D122&amp;language=en_GB&amp;category=software&amp;title=WordPress+plugin+Simple+View&amp;description=This+plugin+is+Wordpress+shell+for+javascript+FloatBox+library+by+Byron+McGregor.+Floatbox+is+a+javascript+library+for+displaying+windowed+content+over++top+of+web+pages.+It+can+be+considered+a+%27lightbox+clone%27+%28Lightview%2C+Lightbox%2C+Shadowbox%2C+Fancybox%2C+Thickbox%2C+etc.%29+with+great+image+gallery++capabilities%2C+but+also+extends+that+model+with+support+for+all+types+of++content+and+strong+programmability+for+%27smart%27%2C+interactive+content.+Floatbox+is+highly+customizable%2C+easy+to+deploy%2C+and+very+robust+and++reliable+across+all+modern+browsers.%0D%0A%0D%0ASupport+Forum+for+this+plugin.%0D%0A%0D%0A%5Bsvg+id%3D2+exclude%3D%2211%2C12%2C13%22%5D%0D%0AExamples%0D%0AImages+%28thumbnails+content%29%3A%0D%0A%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fbmw%2Fbmw-x5.jpg%22+caption%3D%22BMW+X5%22+group%3D%22bmw%22%5D%5B%2Fsview%5D+%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fbmw%2Fbmw-6.jpg%22+caption%3D%22BMW+6%22+group%3D%22bmw%22%5D%5B%2Fsview%5D+%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fbmw%2Fbmw-x6.jpg%22+caption%3D%22BMW+X6%22+group%3D%22bmw%22%5D%5B%2Fsview%5D%0D%0AImages+%28text+content%29%3A%0D%0A%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fbmw%2Fbmw-6.jpg%22+group%3D%22text%22%5DBMW+6%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fbmw%2Fbmw-x6.jpg%22+caption%3D%22BMW+X6%22+group%3D%22text%22%5DBMW+X6%5B%2Fsview%5D%0D%0A%0D%0AVideo+%28YouTube+ID+content%29%3A%0D%0A%5Bsview+source%3D%22http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DQ2DwAv3vunI%22+caption%3D%22BMW+X6%22+group%3D%22video%22%5D%5B%2Fsview%5D+%5Bsview+source%3D%22http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D04DSXRelWlg%22+caption%3D%22BMW+X6+ActiveHybrid%22+group%3D%22video%22%5D%5B%2Fsview%5D%0D%0AVideo+%28text+content%29%3A%0D%0A%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DXG2vJBEQJn0%22+caption%3D%22Metallica.+No+Leaf+Clover%22%5DYouTube%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fvideo.yahoo.com%2Fwatch%2F1110057%2F4055094%22+caption%3D%22Andy+McKee+-+Ebon+Coast%22%5DYahoo%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.vimeo.com%2F1211060%22+caption%3D%22www.wherethehellismatt.com%22%5DVimeo%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fvideo.google.com%2Fgoogleplayer.swf%3FdocId%3D1352016870638076087%26amp%3Bhl%3Den%26amp%3BplayerMode%3Dmini%22+caption%3D%22While+My+Ukelele+Gently+Weeps%22%5DGoogle+Video%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.metacafe.com%2Ffplayer%2F947767%2Fnatural_wonders.swf%22+caption%3D%22Natural+Wonders%22%5DMetacafe%5B%2Fsview%5D%0D%0A%09+%5Bsview+source%3D%22http%3A%2F%2Fwww.dailymotion.com%2Fswf%2Fk8mRGOgKOiUjxWg4TB%22+caption%3D%22Adrian+Belew+-+Oh%2C+Daddy%22%5DDailymotion%5B%2Fsview%5D%0D%0A%0D%0APredefined+Galleries+%28version+1.0%2B%29%3A%0D%0A%5Bsvg+id%3D1%5D%0D%0AHow+to+install%0D%0A%0D%0A%09Upload+plugin+folder+to+Wordpress+%2Fwp-content%2Fplugins+folder%0D%0A%09Activate+plugin%0D%0A%09Go+to+FloatBox+Installation+page+and+install+FloatBox+library.%0D%0A%09Enter+License+Key+on+plugin+settings+page.+Floatbox+is+protected+by+copyright+and+is+released+under+the+Creative+Commons+Attribution-Noncommercial-No+Derivative++Works+3.0+Unported+License.+Without+a+license+key+present%2C+the+software+will+periodically+display+a++registration+reminder+during+use.%0D%0A%09Customise+plugin+to+your+taste.+All+FloatBox+parameters+are+represented+in+the+plugin.%0D%0A%0D%0A%5Bsvg+id%3D2+only%3D%225%2C6%2C7%22%5D%0D%0AHow+to+use%0D%0ATo+insert+FloatBox+object+to+your+post%27s+content+use+plugin+shortcodes+or+plugin+insertion+dialog.%0D%0A%0D%0AMore+howto+read+here.%0D%0A%0D%0AShortcodes%3A%0D%0A%0D%0A%5Bsgreybox%5D%5Bsview+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fsv-admin.jpg%22+caption%3D%22Simple+View+Admin+Page%22+group%3D%22admin%22%5DText+or+Thumbnail%5B%2Fsview%5D%5B%2Fsgreybox%5D%0D%0A%0D%0A%09source+-+media+source+%28image%2C+video+or+another+site%29%0D%0A%09caption+-+caption+of+media%0D%0A%09group+-+if+you+want+to+place+several+galleries+on+one+page%2C+set+group+value+for+each+group+of+media%0D%0A%0D%0AFor+predefined+objects%3A%0D%0A%0D%0A%5Bsgreybox%5D%5Bsvg+id%3D1%5D%0D%0A%5Bsvg+id%3D1+only%3D%221%2C2%2C5%22%5D%0D%0A%5Bsvg+id%3D1+exclude%3D%221%2C2%2C5%22+group%3D%22anyName%22%5D%0D%0A%5Bsvg+item%3D1%5D%0D%0A%5B%2Fsgreybox%5D%0D%0A%0D%0A%09id+-+ID+of+predefined+gallery.+Gallery+mode.%0D%0A%09only+-+show+only+specified+items+from+predefined+gallery.++Gallery+mode.%0D%0A%09exclude+-+do+not+show+specified+items.+Gallery+mode.%0D%0A%09group+-+group+name.+Several+galleries+with+same+group+name++will+be+shown+as+one+gallery+in+FloatBox+window.+Gallery+mode.%0D%0A%09item+-+show+single+item+by+item+ID.+Item+mode.%0D%0A%0D%0AInsertion+Dialogs%3A%0D%0A%0D%0A%5Bsvg+id%3D2+only%3D%2211%2C12%2C13%22%5D%0D%0A%0D%0ABasic+Settings%0D%0A%0D%0A%09Source+-+media+source+%28image%2C+video+or+another+site%29.+URL+only.%0D%0A%09Caption+-+caption+of+media.%0D%0A%09Content+-+Text%2C+URL+of+thumbnail+or+YouTube+ID.%0D%0A%09Content+Type+-+sets+type+of+content.%0D%0A%0D%0AExtended+Settings%0D%0A%0D%0A%09Group+-+if+you+want+to+place+several+galleries+on+one+page%2C+set+group+value+for++each+group+of+media.%0D%0A%0D%0APredefined+Galleries%0D%0A%0D%0A%09ID+-+ID+of+gallery+%28Gallery+Mode%29+or+single+item+%28Item+Mode%29%0D%0A%09Gallery+Content+Type+-+ID+modes+selector%0D%0A%09Items+-+items+IDs+for+show+only+or+exclude+from+show%0D%0A%09Only+or+Exclude+Items+-+only-exclude+modes+selector%0D%0A%0D%0AFloatBox+Features%0D%0AYou+can+read+about+all+FloatBox+features+here.%0D%0ADonations%0D%0A%5Bstextbox+id%3D%22info%22+big%3D%22true%22%5DIf+you+have+found+this+plugin+useful%2C+please+consider+making+a+donation+to+help+support+future+development.+Your+support+will+be+much+appreciated.+Thank+you%21%0D%0A%0D%0AWarning%21+The+default+value+of+donation+is+%24200.+Don%27t+worry%21+This+is+not+my+appetite%2C+this+is+default+value+defined+by+Payoneer+service%2C+you+can+change+it+to+any+value+you+want%21%0D%0A%5B%2Fstextbox%5D%0D%0ADownload%0D%0A%5Bstextbox+id%3D%22download%22%5D+%5Bmwpi_block+slug+%3D%22simple-view%22+mode%3D%22download%22%5DWordpress+shell+for+javascript+FloatBox+library++by+Byron+McGregor.+FloatBox+is+similar+to+Lightview%2C+Lightbox%2C+Shadowbox%2C+Fancybox%2C++Thickbox%2C+etc.%5B%2Fmwpi_block%5D%5B%2Fstextbox%5D&amp;tags=plugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=122</feedburner:origLink></item>
		<item>
		<title>Special Text Boxes 4. Poll!</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/7vmcVy2-gXQ/</link>
		<comments>http://www.simplelib.com/?p=301#comments</comments>
		<pubDate>Fri, 05 Feb 2010 09:03:16 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=301</guid>
		<description><![CDATA[Operation over the new version (version 4) Wordpress of plug-in Special Text Boxes has started. As a matter of fact, now there is an works over jQuery plug-in which will be a basis of the new version. The first testing has shown that stb mapping of blocks of the text occurs to script usage absolutely equally in all browsers accessible to me, including IE (rounded corners, shadows, etc.).]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft" style="margin-right: 10px; margin-bottom: 5px;" src="http://www.simplelib.com/images/featured/wp-sb.jpg" alt="STB4" width="150" height="150" />Dear readers of my blog! I ask to consider this article as controllable information leakage. <img src='http://www.simplelib.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Operation over the new version (version 4) of WordPress plug-in <a href="http://www.simplelib.com/?p=11">Special Text Boxes</a> has started. As a matter of fact, now there is an works over jQuery plug-in which will be a basis of the new version. The first testing has shown that stb mapping of blocks of the text occurs to script usage absolutely equally in all browsers accessible to me, including IE (rounded corners, shadows, etc.).<br />
<span id="more-301"></span><br />
The developed plug-in will use new technology of plotting on a canvas, in IE, accordingly VML-technology. That will allow to use more interesting дизаин and to increase quantity of user&#8217;s customisations. Operation is in a stage preAlpha, otherwise, right at the beginning. However some can be seen results <a href="http://blogcoding.ru/stb/index.html" target="_blank" onclick="pageTracker._trackPageview('/outgoing/blogcoding.ru/stb/index.html?referer=');"><strong>right now</strong></a>.</p>
<p>It would be desirable to learn opinion of the people on necessity of so revolutionary changes. Whether it is necessary to continue operation in this direction or let all remains &#8220;as is&#8221; …</p>
<p>It is very important to me to know your opinion.</p>
<p><strong>Thankful in advance!</strong></p>
<div id='stb-box-8741' class='stb-info_box' >Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.</div>
<p><strong>P.S.</strong> Soon do not wait. It is necessary to do a lot of work.<br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777255, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777255, 2784655);" title="About">About</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://www.chadnicely.com/got-your-sopa-and-pipa-hanging-between-the-legs/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3709658" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.chadnicely.com/got-your-sopa-and-pipa-hanging-between-the-legs/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777255, 3709658);" title="Got Your SOPA and PIPA Hanging Between the Legs!"> Got Your SOPA and PIPA Hanging Between the Legs! </a> <span style="font-size:80% !important;">&nbsp;(Chad Nicely)</span> </li>
<li id="blogglue-cross-2"> <a href="http://rossjoyner.com/13213/one-minute-herpes-cure-review-cure-your-herpes-in-1-day/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3806369" target="_blank" onclick="pageTracker._trackPageview('/outgoing/rossjoyner.com/13213/one-minute-herpes-cure-review-cure-your-herpes-in-1-day/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777255, 3806369);" title="One Minute Herpes Cure Review – Cure Your Herpes In 1 Day?!"> One Minute Herpes Cure Review – Cure Your Herpes In 1 Day?! </a> <span style="font-size:80% !important;">&nbsp;(rossjoyner)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777255" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777255&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777255.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2010, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=301&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=301&amp;md5=11e68bd77ecb43690a94e085848e4824" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/qRPVF7Arvs79wjsrPN9jqRd88js/0/da"><img src="http://feedads.g.doubleclick.net/~a/qRPVF7Arvs79wjsrPN9jqRd88js/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qRPVF7Arvs79wjsrPN9jqRd88js/1/da"><img src="http://feedads.g.doubleclick.net/~a/qRPVF7Arvs79wjsrPN9jqRd88js/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/7vmcVy2-gXQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=301</wfw:commentRss>
		<slash:comments>11</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D301&amp;language=en_GB&amp;category=software&amp;title=Special+Text+Boxes+4.+Poll%21&amp;description=Dear+readers+of+my+blog%21+I+ask+to+consider+this+article+as+controllable+information+leakage.+%3B%29%0D%0A%0D%0AOperation+over+the+new+version+%28version+4%29+of+Wordpress+plug-in+Special+Text+Boxes+has+started.+As+a+matter+of+fact%2C+now+there+is+an+works+over+jQuery+plug-in+which+will+be+a+basis+of+the+new+version.+The+first+testing+has+shown+that+stb+mapping+of+blocks+of+the+text+occurs+to+script+usage+absolutely+equally+in+all+browsers+accessible+to+me%2C+including+IE+%28rounded+corners%2C+shadows%2C+etc.%29.%0D%0A%0D%0AThe+developed+plug-in+will+use+new+technology+of+plotting+on+a+canvas%2C+in+IE%2C+accordingly+VML-technology.+That+will+allow+to+use+more+interesting+%D0%B4%D0%B8%D0%B7%D0%B0%D0%B8%D0%BD+and+to+increase+quantity+of+user%27s+customisations.+Operation+is+in+a+stage+preAlpha%2C+otherwise%2C+right+at+the+beginning.+However+some+can+be+seen+results+right+now.%0D%0A%0D%0AIt+would+be+desirable+to+learn+opinion+of+the+people+on+necessity+of+so+revolutionary+changes.+Whether+it+is+necessary+to+continue+operation+in+this+direction+or+let+all+remains+%22as+is%22+%E2%80%A6%0D%0A%0D%0AIt+is+very+important+to+me+to+know+your+opinion.%0D%0A%0D%0AThankful+in+advance%21%0D%0A%0D%0A%5Bstextbox+id%3D%22info%22%5D%5Bpoll+id%3D%222%22%5D%5B%2Fstextbox%5D%0D%0A%0D%0AP.S.+Soon+do+not+wait.+It+is+necessary+to+do+a+lot+of+work.&amp;tags=jQuery%2Cplugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=301</feedburner:origLink></item>
		<item>
		<title>WordPress plugin Simple Counters</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/cU5aZFTLnI0/</link>
		<comments>http://www.simplelib.com/?p=256#comments</comments>
		<pubDate>Sat, 02 Jan 2010 14:43:14 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[FeedBurner]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=256</guid>
		<description><![CDATA[
This plugin adds simple counters badge (FeedBurner and Twitter) to your blog. This badge shows for blog readers a counter of your FeedBurner readers and Twitter followers. It also provides &#8220;Subscribe to&#8221; and &#8220;Follow me&#8221; links for your users.
This is full customisable plugin. You can customise font and background (gradient) colors, background gradient vector direction, [...]]]></description>
			<content:encoded><![CDATA[
<p><img class="alignleft" style="margin: 5px;" src="http://www.simplelib.com/images/featured/simple-counters.png" alt="Simple Counters" width="150" height="150" />This plugin adds simple counters badge (FeedBurner and Twitter) to your blog. This badge shows for blog readers a counter of your FeedBurner readers and Twitter followers. It also provides &#8220;Subscribe to&#8221; and &#8220;Follow me&#8221; links for your users.</p>
<p>This is full customisable plugin. You can customise font and background (gradient) colors, background gradient vector direction, images, hint colors and themes, badge position on browser screen, etc.</p>
<p><a href="http://forum.simplelib.com/forumdisplay.php?10-Simple-Counters" onclick="pageTracker._trackPageview('/outgoing/forum.simplelib.com/forumdisplay.php?10-Simple-Counters&amp;referer=');">Support Forum for this plugin</a>.<br />
<span id="more-256"></span><br />
Alive example of badge you can see on my blog, near right side of browser &#8230;</p>
<p><center><a href='http://www.simplelib.com/images/posts/sc.jpg' class='floatbox' title='Simple Counters' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/sc-mini.png" alt="Simple Counters" width="108" height="120" /></a> <a href='http://www.simplelib.com/images/posts/sc-hints.jpg' class='floatbox' title='Simple Counters Hints' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/sc-hints-mini.png" alt="Simple Counters Hints" width="119" height="120" /></a> <a href='http://www.simplelib.com/images/posts/sc-admin.jpg' class='floatbox' title='Simple Counters Admin Page' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/sc-admin-mini.png" alt="Simple Counters Admin Page" width="119" height="120" /></a></center></p>
<h2>Installation</h2>
<ol>
<li>Upload plugin dir to the /wp-content/plugins/ directory</li>
<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>
<li>Set plugin parameters for your needs</li>
</ol>
<h2>Donations</h2>
<div id='stb-box-5690' class='stb-info_box' >If you have found this plugin useful, please consider making a <a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');">donation</a> to help support future development. Your support will be much appreciated. Thank you!<br />
<a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');"><img class="size-full wp-image-542 alignleft" style="margin-left: 5px; margin-top: 5px;" title="Donate Now!" src="http://www.simplelib.com/wp-content/uploads/2011/01/donate-now.png" alt="" width="100" height="34" /></a></p>
<p style="margin: 1px; font-size: 0.8em; line-height: 12px">Warning! The default value of donation is $200. Don&#8217;t worry! This is not my appetite, this is default value defined by Payoneer service, you can change it to any value you want!</p>
<p></div>
<h2>Download</h2>
<p><div id='stb-box-7067' class='stb-download_box' > <p><strong><a href='http://wordpress.org/extend/plugins/simple-counters/' onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/simple-counters/?referer=');">Simple Counters</a></strong> <br/>Adds simple counters badge (FeedBurner and Twitter) to your blog.</p><p>Author: <a href="http://blogcoding.ru/" onclick="pageTracker._trackPageview('/outgoing/blogcoding.ru/?referer=');">minimus</a>, version: 1.2.18, updated: October 16, 2011, <br/>Requires WP version: 2.9 or higher, tested up to: 3.3.1.<br/><a href="http://downloads.wordpress.org/plugin/simple-counters.1.2.18.zip" onclick="pageTracker._trackPageview('/outgoing/downloads.wordpress.org/plugin/simple-counters.1.2.18.zip?referer=');">Download</a> (10 642 hits) <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/half.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/empty.png"/> (7 votes)</p></div><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777256, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://www.does-seo-work.com/review-of-wordpress-traffic-getting-seo-plugin-from-jeff-johnson/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3777930" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.does-seo-work.com/review-of-wordpress-traffic-getting-seo-plugin-from-jeff-johnson/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777256, 3777930);" title="Review of WordPress Traffic Getting SEO Plugin from Jeff Johnson"> Review of WordPress Traffic Getting SEO Plugin from Jeff Johnson </a> <span style="font-size:80% !important;">&nbsp;(Does SEO Work)</span> </li>
<li id="blogglue-cross-2"> <a href="http://www.does-seo-work.com/optimized-seo-for-wordpress/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3381456" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.does-seo-work.com/optimized-seo-for-wordpress/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777256, 3381456);" title="Optimized SEO for WordPress"> Optimized SEO for WordPress </a> <span style="font-size:80% !important;">&nbsp;(Does SEO Work)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777256" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777256&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777256.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2010 &#8211; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=256&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=256&amp;md5=710f0821e78769431ada6879de7fe829" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/k3jh8eFROP9ZH-xHhMhHOI8ytTM/0/da"><img src="http://feedads.g.doubleclick.net/~a/k3jh8eFROP9ZH-xHhMhHOI8ytTM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/k3jh8eFROP9ZH-xHhMhHOI8ytTM/1/da"><img src="http://feedads.g.doubleclick.net/~a/k3jh8eFROP9ZH-xHhMhHOI8ytTM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/cU5aZFTLnI0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=256</wfw:commentRss>
		<slash:comments>93</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D256&amp;language=en_GB&amp;category=software&amp;title=WordPress+plugin+Simple+Counters&amp;description=This+plugin+adds+simple+counters+badge+%28FeedBurner+and+Twitter%29+to+your+blog.+This+badge+shows+for+blog+readers+a+counter+of+your+FeedBurner+readers+and+Twitter+followers.+It+also+provides+%22Subscribe+to%22+and+%22Follow+me%22+links+for+your+users.%0D%0A%0D%0AThis+is+full+customisable+plugin.+You+can+customise+font+and+background+%28gradient%29+colors%2C+background+gradient+vector+direction%2C+images%2C+hint+colors+and+themes%2C+badge+position+on+browser+screen%2C+etc.%0D%0A%0D%0ASupport+Forum+for+this+plugin.%0D%0A%0D%0AAlive+example+of+badge+you+can+see+on+my+blog%2C+near+right+side+of+browser+...%0D%0A%0D%0A%5Bsgallery+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fsc.jpg%22+caption%3D%22Simple+Counters%22%5D%5B%2Fsgallery%5D+%5Bsgallery+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fsc-hints.jpg%22+caption%3D%22Simple+Counters+Hints%22%5D%5B%2Fsgallery%5D+%5Bsgallery+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fsc-admin.jpg%22+caption%3D%22Simple+Counters+Admin+Page%22%5D%5B%2Fsgallery%5D%0D%0AInstallation%0D%0A%0D%0A%09Upload+plugin+dir+to+the+%2Fwp-content%2Fplugins%2F+directory%0D%0A%09Activate+the+plugin+through+the+%E2%80%98Plugins%E2%80%99+menu+in+WordPress%0D%0A%09Set+plugin+parameters+for+your+needs%0D%0A%0D%0ADonations%0D%0A%5Bstextbox+id%3D%22info%22+big%3D%22true%22%5DIf+you+have+found+this+plugin+useful%2C+please+consider+making+a+donation+to+help+support+future+development.+Your+support+will+be+much+appreciated.+Thank+you%21%0D%0A%0D%0AWarning%21+The+default+value+of+donation+is+%24200.+Don%27t+worry%21+This+is+not+my+appetite%2C+this+is+default+value+defined+by+Payoneer+service%2C+you+can+change+it+to+any+value+you+want%21%0D%0A%5B%2Fstextbox%5D%0D%0ADownload%0D%0A%5Bstextbox+id%3D%22download%22%5D+%5Bmwpi_block+slug+%3D%22simple-counters%22+mode%3D%22download%22%5DAdds+simple+counters+badge+%28FeedBurner+and+Twitter%29+to+your+blog.%5B%2Fmwpi_block%5D%5B%2Fstextbox%5D&amp;tags=FeedBurner%2Cplugin%2CTwitter%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=256</feedburner:origLink></item>
		<item>
		<title>WordPress plugin My WP Plugin Info</title>
		<link>http://feedproxy.google.com/~r/Simplelib/~3/x48643NeudE/</link>
		<comments>http://www.simplelib.com/?p=195#comments</comments>
		<pubDate>Fri, 17 Jul 2009 18:02:19 +0000</pubDate>
		<dc:creator>minimus</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.simplelib.com/?p=195</guid>
		<description><![CDATA[
This plugin recieves info of any plugin from wordpress.org plugins repository. It may be useful for plugin developers and for bloggers who writes about plugins. Plugin uses WordPress Plugins API, that was included to WordPress since 2.7 version.


You can use this plugin for receiving any data of any plugin placed to WordPress plugin repository. For [...]]]></description>
			<content:encoded><![CDATA[
<p>This plugin recieves info of <strong>any plugin</strong> from <a href="http://wordpress.org/extend/" onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/?referer=');">wordpress.org</a> plugins repository. It may be useful for plugin developers and for bloggers who writes about plugins. Plugin uses WordPress Plugins API, that was included to WordPress since 2.7 version.<br />
<span id="more-195"></span></p>
<p style="text-align: center;"><a href='http://www.simplelib.com/images/posts/mwpi-output.jpg' class='floatbox' title='Example of plugin output' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/mwpi-output-mini.jpg" alt="Example of plugin output" /></a> <a href='http://www.simplelib.com/images/posts/mwpi-button.jpg' class='floatbox' title='Plugin Insert Short Code dialog button' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/mwpi-button-mini.jpg" alt="Plugin Insert Short Code dialog button" /></a> <a href='http://www.simplelib.com/images/posts/mwpi-dialog.jpg' class='floatbox' title='Plugin Insert Short Code dialog' rev='group:pix' ><img style="border: 1px solid black; margin: 5px;" src="http://www.simplelib.com/images/posts/mwpi-dialog-mini.jpg" alt="Plugin Insert Short Code dialog" /></a></p>
<p>You can use this plugin for receiving any data of any plugin placed to WordPress plugin repository. For example:<br />
<strong>All in One SEO Pack</strong>. Current version: 1.6.13.8; 9 975 539 hits; Rating: <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/half.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/empty.png"/> <div id='stb-caption-box-4034' class='stb-grey-caption_box' >Code of Example</div><div id='stb-body-box-4034' class='stb-grey-body_box' ><strong>[mwpi slug ="all-in-one-seo-pack" data="name" mode="fmt"]. [mwpi slug ="all-in-one-seo-pack" data="version" mode="fmt"]; [mwpi slug ="all-in-one-seo-pack" data="downloaded" mode="fmt"]; Rating: [mwpi slug ="all-in-one-seo-pack" data="rating_raw" mode="fmt"]</strong> </div></p>
<h2>Installation</h2>
<ul>
<li>Unpack plugin archive file.</li>
<li>Put plugin folder to WordPress <code>wp-content/plugins</code> folder.</li>
<li>Activate plugin on Admin page.</li>
</ul>
<h2>Usage</h2>
<p>To embed <strong>plugin info</strong> to your post, use short code as this: <div id='stb-box-5617' class='stb-grey_box' ><strong>[mwpi slug="my-wordpress-plugin-info" data="author" mode="formated"]<br />
or<br />
[mwpi slug="my-wordpress-plugin-info" mode="block" body="Some text"]</strong></div><br />
where<br />
<strong>slug</strong> &#8211; <strong>slug of plugin</strong> in WordPress plugins repository<br />
<strong>data</strong> &#8211; what data you want to get</p>
<ul>
<li>name &#8211; plugin name</li>
<li>slug &#8211; plugin slug</li>
<li>version &#8211; plugin current version</li>
<li>author &#8211; author of plagin</li>
<li>author_profile &#8211; author&#8217;s profile</li>
<li>requires &#8211; required WordPress version</li>
<li>tested &#8211; high WordPress version tested</li>
<li>rating &#8211; plugin rating</li>
<li>num_ratings &#8211; number of votes</li>
<li>rating_raw &#8211; plugin rating as stars (formated mode only)</li>
<li>downloaded &#8211; number of downloads</li>
<li>last_updated &#8211; last updating date</li>
<li>homepage &#8211; plugin homepage</li>
<li>download_link &#8211; plugin download link</li>
<li>tags &#8211; plugin tags</li>
<li>description &#8211; section &#8220;Description&#8221;</li>
<li>installation &#8211; section &#8220;Installation&#8221;</li>
<li>faq &#8211; section FAQ</li>
<li>screenshots &#8211; section &#8220;Screenshots&#8221; (now not realised in WordPress)</li>
<li>changelog &#8211; section &#8220;Changelog&#8221;</li>
<li>other_notes &#8211; section &#8220;Other Notes&#8221;</li>
</ul>
<p><strong>mode</strong> &#8211; how you want output data looks</p>
<ul>
<li>api &#8211; outputs data AS IS</li>
<li>formated &#8211; outputs data prepared for best view</li>
<li>block &#8211; outputs data as pack of data (see example)</li>
</ul>
<p><strong>body</strong> &#8211; any text you want show in block mode (may be on your local language)<br />
<div id='stb-container-9335' class='stb-container'><div id='stb-caption-box-9335' class='stb-info-caption_box stb_caption' >Example of block mode<div id="stb-tool-9335" class="stb-tool" style="float:right; padding:0px; margin:0px auto"><img id="stb-toolimg-9335" style="border: none; background-color: transparent; padding: 0px; margin: 0px auto;" src="http://www.simplelib.com/wp-content/plugins/wp-special-textboxes/images/hide.png" title="Hide" /></div></div><div id='stb-body-box-9335' class='stb-info-body_box stb_body' ><p><strong><a href='http://wordpress.org/extend/plugins/wp-special-textboxes/' onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/wp-special-textboxes/?referer=');">Special Text Boxes</a></strong> <br/>It is very, very, very cool plugin! Trust me!<br/>Author: <a href="http://blogcoding.ru" onclick="pageTracker._trackPageview('/outgoing/blogcoding.ru?referer=');">minimus</a>. Current version: 4.3.72. Last updated: February 13, 2012. Requires Wordpress version: 3.0 or higher. Compatible up to: 3.3.1. <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/half.png"/> (25 votes) <a href="http://downloads.wordpress.org/plugin/wp-special-textboxes.4.3.72.zip" onclick="pageTracker._trackPageview('/outgoing/downloads.wordpress.org/plugin/wp-special-textboxes.4.3.72.zip?referer=');">Download</a></p></div></div> <div id='stb-caption-box-6613' class='stb-grey-caption_box' >Code of Example</div><div id='stb-body-box-6613' class='stb-grey-body_box' ><strong>[mwpi slug="wp-special-textboxes" mode="block" body="It is very, very, very cool plugin! Trust me!"]</strong></div></p>
<h2>Using Insert Dialog</h2>
<p>You can use &#8220;Insert Dialog&#8221; to insert plugin short codes when writing post in WordPress WYSIWYG editor.<br />
<strong>&#8220;api&#8221; or &#8220;formated&#8221; mode</strong><br />
Click &#8220;Insert Plugin Info&#8221; button. Type slug of needed plugin, select &#8220;api&#8221; or &#8220;formated&#8221; mode, select needed data, click &#8220;Insert&#8221; button.<br />
<strong>&#8220;block&#8221; mode</strong><br />
Type needed text about plugin. Select this text. Click &#8220;Insert Plugin Info&#8221; button. Type slug of needed plugin, select &#8220;block&#8221; mode, click &#8220;Insert&#8221; button. Selected text will be inserted as &#8220;body&#8221; parameter.</p>
<h2>Available languages</h2>
<ul>
<li>English</li>
<li>Russian</li>
</ul>
<h2>Donations</h2>
<div id='stb-box-3375' class='stb-info_box' >If you have found this plugin useful, please consider making a <a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');">donation</a> to help support future development. Your support will be much appreciated. Thank you!<br />
<a title="Donate Now!" href="https://load.payoneer.com/LoadToPage.aspx?email=minimus@simplelib.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/load.payoneer.com/LoadToPage.aspx?email=minimus_simplelib.com&amp;referer=');"><img class="size-full wp-image-542 alignleft" style="margin-left: 5px; margin-top: 5px;" title="Donate Now!" src="http://www.simplelib.com/wp-content/uploads/2011/01/donate-now.png" alt="" width="100" height="34" /></a></p>
<p style="margin: 1px; font-size: 0.8em; line-height: 12px">Warning! The default value of donation is $200. Don&#8217;t worry! This is not my appetite, this is default value defined by Payoneer service, you can change it to any value you want!</p>
<p></div>
<h2>Downloads</h2>
<p><div id='stb-box-4936' class='stb-download_box' > <p><strong><a href='http://wordpress.org/extend/plugins/my-wordpress-plugin-info/' onclick="pageTracker._trackPageview('/outgoing/wordpress.org/extend/plugins/my-wordpress-plugin-info/?referer=');">My WP Plugin Info</a></strong> <br/>Recieves info of any plugin from wordpress.org plugins repository.</p><p>Author: <a href="http://blogovod.co.cc" onclick="pageTracker._trackPageview('/outgoing/blogovod.co.cc?referer=');">minimus</a>, version: 1.0.13, updated: August 3, 2009, <br/>Requires WP version: 2.7 or higher, tested up to: 2.8.3.<br/><a href="http://downloads.wordpress.org/plugin/my-wordpress-plugin-info.1.0.13.zip" onclick="pageTracker._trackPageview('/outgoing/downloads.wordpress.org/plugin/my-wordpress-plugin-info.1.0.13.zip?referer=');">Download</a> (433 hits) <img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/><img src="http://www.simplelib.com/wp-content/plugins/my-wordpress-plugin-info/img/full.png"/> (2 votes)</p></div><br />
<!--more--><!-- BlogGlue Cache: Yes --></p>
<div class="blogglue_plugin" style="display:block;margin:5px 0px 20px 0px;">
<h3 class="blogglue-header blogglue-inner"> More from minimus </h3>
<ul class="blogglue-links blogglue-inner">
<li id="blogglue-inner-1"><a href="http://www.simplelib.com/?p=566&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2845112" target="_parent" onclick="return BlogGlue.go(event, this, 2777257, 2845112);" title="SAM. How it works.">SAM. How it works.</a></li>
<li id="blogglue-inner-2"><a href="http://www.simplelib.com/?page_id=123&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2784655" target="_parent" onclick="return BlogGlue.go(event, this, 2777257, 2784655);" title="About">About</a></li>
<li id="blogglue-inner-3"><a href="http://www.simplelib.com/?page_id=457&amp;utm_source=BlogGlue_network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3034992" target="_parent" onclick="return BlogGlue.go(event, this, 2777257, 3034992);" title="Archive">Archive</a></li>
</ul>
<h3 class="blogglue-header blogglue-cross"> minimus Recommends: </h3>
<ul class="blogglue-links blogglue-cross">
<li id="blogglue-cross-1"> <a href="http://thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-2731782" target="_blank" onclick="pageTracker._trackPageview('/outgoing/thenexttrillions.com/blog/the-social-bookmarking-communitywhy-its-worthwhile-to-start?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777257, 2731782);" title="The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness"> The Social Bookmarking Community:Why It&#39;s worthwhile to start | Web Traffic|Make Money|Wellness </a> <span style="font-size:80% !important;">&nbsp;(xbgxxx)</span> </li>
<li id="blogglue-cross-2"> <a href="http://rossjoyner.com/12900/are-you-seriously-searching-for-a-professional-wordpress-theme/?utm_source=BlogGlue_Network&amp;utm_medium=BlogGlue_Plugin" id="blogglue-3806151" target="_blank" onclick="pageTracker._trackPageview('/outgoing/rossjoyner.com/12900/are-you-seriously-searching-for-a-professional-wordpress-theme/?utm_source=BlogGlue_Network_amp_utm_medium=BlogGlue_Plugin&amp;referer=');return BlogGlue.go(event, this, 2777257, 3806151);" title="Are you seriously searching for a Professional WordPress Theme?"> Are you seriously searching for a Professional WordPress Theme? </a> <span style="font-size:80% !important;">&nbsp;(rossjoyner)</span> </li>
</ul>
<div class="blogglue-footer" style="margin:10px 0px;display:block !important"> <a href="http://www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue%20Plugin&amp;utm_medium=Recommend&amp;utm_campaign=Plugin&amp;coupon=MINIMUS&amp;blogglue_page=2777257" target="_blank" style="text-decoration:none !important;" onclick="pageTracker._trackPageview('/outgoing/www.blogglue.com/11983-b37405bf98a903f61a336f359553f127/?utm_source=BlogGlue_20Plugin_amp_utm_medium=Recommend_amp_utm_campaign=Plugin_amp_coupon=MINIMUS_amp_blogglue_page=2777257&amp;referer=');"> <img src="http://www.gravatar.com/avatar.php?default=%2F%2Fs3.amazonaws.com%2Farkayne-media%2Fimg%2Fprofile%2Fdefault_sm.png&amp;size=24&amp;gravatar_id=eae24d182f20df1043ff0e9b038b1e10" width="24" height="24" border="0" alt="Blog Margeting Related Posts Plugin For minimus" style="display:inline;margin: 0 5px 0 10px; border:1px solid #AAA; width: 24px !important; height: 24px; !important;"/><span style="position:relative;top:-8px;font-family:'Trebuchet MS'; font-size: 0.8em;">Partner With Me!</span> </a> <img class="blogglue-hit" style="border:none;left:-9999px;position:absolute;" src="http://www.blogglue.com/widget/hit/2777257.GIF" border="0" alt="Blog Marketing Related Posts Plugin Counter" /> </div>
</p></div>
<p style='text-align:left'>&copy; 2009 &#8211; 2011, <a href='http://www.simplelib.com'>minimus</a>. All rights reserved. </p>

<img src="http://www.simplelib.com/?ak_action=api_record_view&id=195&type=feed" alt="" /> <p><a href="http://www.simplelib.com/?flattrss_redirect&amp;id=195&amp;md5=87d768a68fe1c2be847f98516ab08972" title="Flattr" target="_blank"><img src="http://www.simplelib.com/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>
<p><a href="http://feedads.g.doubleclick.net/~a/DVhfgyPaA2b3o_Ku7_QUzJln8BU/0/da"><img src="http://feedads.g.doubleclick.net/~a/DVhfgyPaA2b3o_Ku7_QUzJln8BU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/DVhfgyPaA2b3o_Ku7_QUzJln8BU/1/da"><img src="http://feedads.g.doubleclick.net/~a/DVhfgyPaA2b3o_Ku7_QUzJln8BU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Simplelib/~4/x48643NeudE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.simplelib.com/?feed=rss2&amp;p=195</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<atom:link rel="payment" href="https://flattr.com/submit/auto?user_id=SimpleLib&amp;url=http%3A%2F%2Fwww.simplelib.com%2F%3Fp%3D195&amp;language=en_GB&amp;category=software&amp;title=WordPress+plugin+My+WP+Plugin+Info&amp;description=This+plugin+recieves+info+of+any+plugin+from+wordpress.org+plugins+repository.+It+may+be+useful+for+plugin+developers+and+for+bloggers+who+writes+about+plugins.+Plugin+uses+Wordpress+Plugins+API%2C+that+was+included+to+Wordpress+since+2.7+version.%0D%0A%0D%0A%5Bsgallery+caption%3D%22Example+of+plugin+output%22+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fmwpi-output.jpg%22%5D%5B%2Fsgallery%5D+%5Bsgallery+caption%3D%22Plugin+Insert+Short+Code+dialog+button%22+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fmwpi-button.jpg%22%5D%5B%2Fsgallery%5D+%5Bsgallery+caption%3D%22Plugin+Insert+Short+Code+dialog%22+source%3D%22http%3A%2F%2Fwww.simplelib.com%2Fimages%2Fposts%2Fmwpi-dialog.jpg%22%5D%5B%2Fsgallery%5D%0D%0A%0D%0AYou+can+use+this+plugin+for+receiving+any+data+of+any+plugin+placed+to+Wordpress+plugin+repository.+For+example%3A%0D%0A%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22name%22+mode%3D%22fmt%22%5D.+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22version%22+mode%3D%22fmt%22%5D%3B+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22downloaded%22+mode%3D%22fmt%22%5D%3B+Rating%3A+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22rating_raw%22+mode%3D%22fmt%22%5D+%5Bstextbox+id%3D%22grey%22+caption%3D%22Code+of+Example%22%5D%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22name%22+mode%3D%22fmt%22%5D.+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22version%22+mode%3D%22fmt%22%5D%3B+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22downloaded%22+mode%3D%22fmt%22%5D%3B+Rating%3A+%5Bmwpi+slug+%3D%22all-in-one-seo-pack%22+data%3D%22rating_raw%22+mode%3D%22fmt%22%5D+%5B%2Fstextbox%5D%0D%0AInstallation%0D%0A%0D%0A%09Unpack+plugin+archive+file.%0D%0A%09Put+plugin+folder+to+Wordpress+wp-content%2Fplugins+folder.%0D%0A%09Activate+plugin+on+Admin+page.%0D%0A%0D%0AUsage%0D%0ATo+embed+plugin+info+to+your+post%2C+use+short+code+as+this%3A+%5Bstextbox+id%3D%22grey%22%5D%5Bmwpi+slug%3D%22my-wordpress-plugin-info%22+data%3D%22author%22+mode%3D%22formated%22%5D%0D%0Aor%0D%0A%5Bmwpi+slug%3D%22my-wordpress-plugin-info%22+mode%3D%22block%22+body%3D%22Some+text%22%5D%5B%2Fstextbox%5D%0D%0Awhere%0D%0Aslug+-+slug+of+plugin+in+Wordpress+plugins+repository%0D%0Adata+-+what+data+you+want+to+get%0D%0A%0D%0A%09name+-+plugin+name%0D%0A%09slug+-+plugin+slug%0D%0A%09version+-+plugin+current+version%0D%0A%09author+-+author+of+plagin%0D%0A%09author_profile+-+author%27s+profile%0D%0A%09requires+-+required+Wordpress+version%0D%0A%09tested+-+high+Wordpress+version+tested%0D%0A%09rating+-+plugin+rating%0D%0A%09num_ratings+-+number+of+votes%0D%0A%09rating_raw+-+plugin+rating+as+stars+%28formated+mode+only%29%0D%0A%09downloaded+-+number+of+downloads%0D%0A%09last_updated+-+last+updating+date%0D%0A%09homepage+-+plugin+homepage%0D%0A%09download_link+-+plugin+download+link%0D%0A%09tags+-+plugin+tags%0D%0A%09description+-+section+%22Description%22%0D%0A%09installation+-+section+%22Installation%22%0D%0A%09faq+-+section+FAQ%0D%0A%09screenshots+-+section+%22Screenshots%22+%28now+not+realised+in+Wordpress%29%0D%0A%09changelog+-+section+%22Changelog%22%0D%0A%09other_notes+-+section+%22Other+Notes%22%0D%0A%0D%0Amode+-+how+you+want+output+data+looks%0D%0A%0D%0A%09api+-+outputs+data+AS+IS%0D%0A%09formated+-+outputs+data+prepared+for+best+view%0D%0A%09block+-+outputs+data+as+pack+of+data+%28see+example%29%0D%0A%0D%0Abody+-+any+text+you+want+show+in+block+mode+%28may+be+on+your+local+language%29%0D%0A%5Bstextbox+id%3D%22info%22+caption%3D%22Example+of+block+mode%22%5D%5Bmwpi+slug%3D%22wp-special-textboxes%22+mode%3D%22block%22+body%3D%22It+is+very%2C+very%2C+very+cool+plugin%21+Trust+me%21%22%5D%5B%2Fstextbox%5D+%5Bstextbox+id%3D%22grey%22+caption%3D%22Code+of+Example%22%5D%5Bmwpi+slug%3D%22wp-special-textboxes%22+mode%3D%22block%22+body%3D%22It+is+very%2C+very%2C+very+cool+plugin%21+Trust+me%21%22%5D%5B%2Fstextbox%5D%0D%0AUsing+Insert+Dialog%0D%0AYou+can+use+%22Insert+Dialog%22+to+insert+plugin+short+codes+when+writing+post+in+Wordpress+WYSIWYG+editor.%0D%0A%22api%22+or+%22formated%22+mode%0D%0AClick+%22Insert+Plugin+Info%22+button.+Type+slug+of+needed+plugin%2C+select+%22api%22+or+%22formated%22+mode%2C+select+needed+data%2C+click+%22Insert%22+button.%0D%0A%22block%22+mode%0D%0AType+needed+text+about+plugin.+Select+this+text.+Click+%22Insert+Plugin+Info%22+button.+Type+slug+of+needed+plugin%2C+select+%22block%22+mode%2C+click+%22Insert%22+button.+Selected+text+will+be+inserted+as+%22body%22+parameter.%0D%0AAvailable+languages%0D%0A%0D%0A%09English%0D%0A%09Russian%0D%0A%0D%0ADonations%0D%0A%5Bstextbox+id%3D%22info%22+big%3D%22true%22%5DIf+you+have+found+this+plugin+useful%2C+please+consider+making+a+donation+to+help+support+future+development.+Your+support+will+be+much+appreciated.+Thank+you%21%0D%0A%0D%0AWarning%21+The+default+value+of+donation+is+%24200.+Don%27t+worry%21+This+is+not+my+appetite%2C+this+is+default+value+defined+by+Payoneer+service%2C+you+can+change+it+to+any+value+you+want%21%0D%0A%5B%2Fstextbox%5D%0D%0ADownloads%0D%0A%5Bstextbox+id%3D%22download%22%5D+%5Bmwpi_block+slug+%3D%22my-wordpress-plugin-info%22+mode%3D%22download%22%5DRecieves+info+of+any+plugin+from+wordpress.org+plugins+repository.%5B%2Fmwpi_block%5D%5B%2Fstextbox%5D&amp;tags=multilingual%2Cplugin%2CWordpress%2Cblog" type="text/html" />
	<feedburner:origLink>http://www.simplelib.com/?p=195</feedburner:origLink></item>
	</channel>
</rss>

