<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Blogging Encyclopedia - Enblogopedia &#187; WordPress Plugins</title>
	<atom:link href="http://www.enblogopedia.com/category/wordpress/wordpress-plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enblogopedia.com</link>
	<description>Everything about blogs. Tips, tutorials, news, plugins and themes reviews and much much more!</description>
	<lastBuildDate>Tue, 15 Apr 2008 16:21:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress Plugin:Comment Quicktags Reloaded</title>
		<link>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/</link>
		<comments>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/#comments</comments>
		<pubDate>Sat, 26 May 2007 11:59:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/</guid>
		<description><![CDATA[For those who used the Comment Quicktags Plugin, you may noticed that it`s now breaking your theme and maybe giving a fatal error and disactivate by itself. I tired to find out what the problem is, and found that it`s the new structure of the quicktags.js file causing the problem. I`m not really a JS [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense--></span>For those who used the <strong>Comment Quicktags Plugin</strong>, you may noticed that it`s now breaking your theme and maybe giving a fatal error and disactivate by itself. I tired to find out what the problem is, and found that it`s the new structure of the <span class="pcode">quicktags.js</span> file causing the problem. I`m not really a JS expert(yet!), so my expressions(syntax) may not be professional/correct.<br />
<span id="more-103"></span><br />
Anyway, the problem lies on the new way some values are called by the <span class="pcode">quicktags.js</span> file. For example:</p>
<pre><code>document.write('&lt;input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="Dictionary lookup" value="lookup" /&gt;');
document.write('&lt;input type="button" id="ed_close" class="ed_button" onclick="edCloseAllTags();" title="Close all open tags" value="Close Tags" /&gt;');</code></pre>
<p>Now:</p>
<pre><code>document.write('&lt;input type="button" id="ed_spell" class="ed_button" onclick="edSpell(edCanvas);" title="' + quicktagsL10n.dictionaryLookup + '" value="' + quicktagsL10n.lookup + '" /&gt;');
document.write('&lt;input type="button" id="ed_close" class="ed_button" onclick="edCloseAllTags();" title="' + quicktagsL10n.closeAllOpenTags + '" value="' + quicktagsL10n.closeTags + '" /&gt;');</code></pre>
<p>The <span class="pcode">quicktagsL10n</span> array is now holding the old values(<a href="http://trac.wordpress.org/ticket/3958">Internationalization</a> <a href="http://trac.wordpress.org/changeset/5167">purpose</a>), but somehow the plugin fails to understand it so one <a href="http://en.wikipedia.org/wiki/Span_and_div">DIV</a> is kept open all the time which cause the break in the theme!</p>
<p>So what I did is just telling the <span class="pcode">edToolbar()</span> function(that contain the DIV) what does this object(quicktagsL10n) represent!<br />
<strong>Note</strong>: I was going to ask <a href="http://www.asymptomatic.net">Owen Winkler</a> the writer of this great plugin to update his plugin but I couldn&#8217;t find a way to contact him and I believe he&#8217;s now busy with the <a href="http://habariproject.org/en/">new open source project</a>.<br />
Download: <a href='http://www.enblogopedia.com/blog/wp-content/uploads/comment_quicktags.zip' title='Comment Quicktag'>Comment Quicktag Plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-plugin-comment-quicktags-reloaded/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Quick Tip:Update Your WP-Table Plugin</title>
		<link>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/</link>
		<comments>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/#comments</comments>
		<pubDate>Sat, 19 May 2007 12:18:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/</guid>
		<description><![CDATA[For those who use the great wp-Table plugin, please first upgrade your plugin to the lastest version(1.44 for this date) as previous versions contain a critical backdoor for hacker attack(more).
And until alex upgrade his plugin (again!), please edit this file wp-table/js/wptable-button.php and on line 12, change it to:
$wpconfig = realpath("../../../../wp-config.php");
Now your &#8220;wp-Table Browser&#8221; Button will [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense#buttonnob--></span>For those who use the great <a href="http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/">wp-Table plugin</a>, please first upgrade your plugin to the <a href="http://alexrabe.boelinger.com/?page_id=3">lastest version</a>(1.44 for this date) as previous versions contain a critical backdoor for hacker attack(<a href="http://alexrabe.boelinger.com/?p=110">more</a>).</p>
<p>And until alex upgrade his plugin (again!), please edit this file <em>wp-table/js/wptable-button.php</em> and on line 12, change it to:<br />
<code>$wpconfig = realpath("../../../../wp-config.php");</code><br />
Now your &#8220;wp-Table Browser&#8221; Button will work fine and no more &#8220;<strong>Could not found wp-config.php. Error in path :</strong>&#8221; will appear.(at least not for the wrong reason!) <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/quick-tip-update-your-wp-table-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Plugin Review:WP-Table Creating Tables Can&#8217;t Be Easier!</title>
		<link>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/</link>
		<comments>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 12:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/</guid>
		<description><![CDATA[Yesterday I was writing a Match Review in my soccer blog. I wanted to write down the statistics of the match in a table, so I searched for the easiest/fastest way to do it. Luckily, I found a great WordPress Plugin called wp-table written by Alex Rabe. This plugin is fantastic, and it can&#8217;t be [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense#buttonnob--></span>Yesterday I was writing a <a href="http://www.soccerspeech.com/ac-milan-fc-bayern-munich-match-review/">Match Review</a> in my <a href="http://www.soccerspeech.com/">soccer blog</a>. I wanted to write down the statistics of the match in a table, so I searched for the easiest/fastest way to do it. Luckily, I found a great <strong>WordPress Plugin</strong> called <a href="http://alexrabe.boelinger.com/?page_id=3">wp-table</a> written by <em>Alex Rabe</em>. This plugin is fantastic, and it can&#8217;t be easier to create a table!<span id="more-92"></span></p>
<p><span class="radsense"><img src='http://www.enblogopedia.com/blog/wp-content/uploads/plugin.gif' alt='plugin' /></span>This plugin doesn&#8217;t need any description as it has its own panel, you specify the size of the table, create it and then fill it with your data. The table will assigned an id so you can implement it to your posts by entering this small tag <strong>[TABLE=ID]</strong>. And that`s it!<br />
You can even style your table within the main panel or through the included <abbr title="Cascading Style Sheet">CSS</abbr> file!</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/plugin-review-wp-table-creating-tables-cant-be-easier/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HowTo:Optimize Your Tag Page Title &#8211; Simple Tagging Plugin</title>
		<link>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/</link>
		<comments>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 16:23:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/</guid>
		<description><![CDATA[I&#8217;ve noticed when I installed the Simple Tagging Plugin that the WordPress can&#8217;t find a title to the tag search results page(tag page), so it`s just putting &#8220;- Enblogopedia&#8221;.
Is This Bad?
Well, having a lot of pages with the same page title isn&#8217;t a good thing, and it`ll obviously affect your tag pages position in SERPs.
Hopefully, [...]]]></description>
			<content:encoded><![CDATA[<p><span class="ladsense"><!--adsense--></span>I&#8217;ve noticed when I installed the <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/" target="_blank">Simple Tagging Plugin</a> that the WordPress can&#8217;t find a title to the tag search results page(tag page), so it`s just putting &#8220;- Enblogopedia&#8221;.</p>
<h4>Is This Bad?</h4>
<p>Well, having a lot of pages with the same page title isn&#8217;t a good thing, and it`ll obviously affect your tag pages position in SERPs.</p>
<p>Hopefully, <a href="http://sw-guide.de" target="_blank">Michael Woehrer</a> has a lot of useful functions within his plugin that can be used to change the title of the Tag page.</p>
<p>For this, we`ll use two functions:<em>STP_GetCurrentTagSet()</em> and <em>STP_IsTagView()</em>.<br />
More about these functions can be found <a href="http://sw-guide.de/wordpress/wordpress-plugins/simple-tagging-plugin/simple-tagging-more-template-tags/">here</a>. Just as follows:<span id="more-86"></span></p>
<blockquote><p>The template tag &lt;?php STP_CurrentTagSet(); ?&gt; outputs the tags used in a tag search, that means it displays the current tags when a visitor is browsing tags.</p></blockquote>
<blockquote><p>The template tag STP_IsTagView() can be used to determine if the current view will be returning tag search results. It returns TRUE if a tag search was requested (that means that a visitor is browsing tags), FALSE otherwise.</p></blockquote>
<p>Here`re what you need to do.</p>
<p>First, edit your header.php file and replace the &lt;title&gt; tag as the following:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet();} else { bloginfo('name'); wp_title();} ?&gt;&lt;/title&gt;</code><br />
This way, if the plugin is activated and your are in the Tag page, your page title will show the tag as title. You can have a lot of forms of this code, such as:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet(); echo ' - ';  bloginfo('name');} else { bloginfo('name'); wp_title();} ?&gt;&lt;/title&gt;</code><br />
Or replacing <em>STP_CurrentTagSet(); echo &#8216; &#8211; &#8216;;  bloginfo(&#8216;name&#8217;);</em> with <em>echo &#8216;Search Results for &#8216;; STP_CurrentTagSet();</em>.</p>
<p>Or if you have a long blog name, just like mine, as I`m using &#8220;<em>Blogging Encyclopedia &#8211; Enblogopedia</em>&#8220;. <strong>And</strong> I`m also using the SEO Title Tag plugin. My code looks like:<br />
<code>&lt;title&gt;&lt;?php if(function_exists('STP_IsTagView') &amp;&amp; STP_IsTagView()) { STP_CurrentTagSet(); echo ' - Enblogopedia';} else { if (function_exists('seo_title_tag')) { seo_title_tag(); } else { bloginfo('name'); wp_title();}} ?&gt;&lt;/title&gt;</code><br />
So it`s really depend on your current Title tag, the easiest way is just to put the current title tag inside the <em>else {}</em> statement. This way, whenever you are <strong>not</strong> in a tag page it`ll show up your default(current) title tag.<br />
For more questions, feel free to <a href="#respond">drop a comment</a> anytime <img src='http://www.enblogopedia.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Enjoyed the article?! Then <a href="http://www.enblogopedia.com/feed/">subscribe to Enblogopedia now</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/how-to-optimize-your-tag-page-title-simple-tagging-plugin/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin: Permalinks Migration</title>
		<link>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/</link>
		<comments>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/#comments</comments>
		<pubDate>Wed, 28 Feb 2007 10:35:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/</guid>
		<description><![CDATA[Last week I decided to change my permalink structure from:
 /yyyy/mm/dd/post-slug/ to /post-slug/
For a lot of reasons&#8230;one to mention is&#8230;SEO!
Anyway, for this reason I asked for the rewrite rule that I should use for this propuse, in the ConnectedInernet Forum and  Ajay offered me a nice Plugin called &#8221; Permalinks Migration&#8220;.
It`s really a great [...]]]></description>
			<content:encoded><![CDATA[<p><span style="padding: 3px; float: right"><!--adsense--></span>Last week I decided to change my permalink structure from:<br />
<em> /yyyy/mm/dd/post-slug/</em> to <em>/post-slug/</em><br />
For a lot of reasons&#8230;one to mention is&#8230;SEO!</p>
<p>Anyway, for this reason I asked for the rewrite rule that I should use for this propuse, in the <a href="http://www.connectedinternet.co.uk/forum/index.php/topic,129.0.html">ConnectedInernet Forum</a> and  Ajay offered me a nice Plugin called &#8221; <a href="http://www.deanlee.cn/wordpress/permalinks-migration-plugin/">Permalinks Migration</a>&#8220;.</p>
<p>It`s really a great plugin, that makes it easy to change your permalink without messing with your .htaccess file.</p>
<p>But since the real reason of writing this article is to review this plugin. And when I saw <a href="http://www.johntp.com/2007/02/28/wordpress-plugin-permalinks-migration/">JohnTP`s post</a> about it. I must say that it has some disadvantages!!!</p>
<p><span id="more-74"></span>The plugin it self works great, but it messes with my Old Feed Links!<br />
What I mean, my old feed links was, obviously,<br />
<code>/2006/01/12/what-ever/feed/</code><br />
and the new structure will make them looks like<br />
<code>/what-ever/feed/</code><br />
But this didn&#8217;t happen, unfortunatly! and I started to get a lot of 404 errors!<br />
So I asked for a solution in the <a href="http://wordpress.org/support/topic/107656?replies=8">WP support forums</a>, and the guys treat me very well!<br />
By adding this rewrite rule to my .htaccess file:<br />
<code>RewriteRule ^[0-9]{4}/[0-9]{2}/[0-9]{2}/([^/]+/feed/?.*) $1 [R=301,L]</code><br />
and everything is ok now.</p>
<p>So should you use this plugin?!<br />
Well I don&#8217;t know, first try to ask for a rewrite rule in <a href="http://wordpress.org/support/">WP support forum</a> or in <a href="http://www.connectedinternet.co.uk/forum/index.php">ConnectedInternet forum</a> and then after the plugin is fully completed, you can use it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enblogopedia.com/wordpress-plugin-permalinks-migration/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
