<?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>Open Script Solution&#187; plugin</title>
	<atom:link href="http://www.openscriptsolution.com/tag/plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openscriptsolution.com</link>
	<description>... where solutions for script programming are found ...</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:22:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Define Data Type for the Certain Column Using WP-Table Reloaded Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/09/22/how-to-define-data-type-for-the-certain-column-using-wp-table-reloaded-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/09/22/how-to-define-data-type-for-the-certain-column-using-wp-table-reloaded-plugin-of-wordpress/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 12:14:12 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[data type]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[WP Table Reloaded]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1455</guid>
		<description><![CDATA[The following information will give you the idea how to define the certain data type for the certain columns in the table that you created with WP-Table Reloaded plugin. Sometimes one of your columns in that table might be contains the Numeric data type. For example, you have a column named &#8220;Quantity&#8221; so the data [...]]]></description>
			<content:encoded><![CDATA[<p>The following information will give you the idea how to define the certain data type for the certain columns in the table that you created with <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/" title="WP Table Reloaded" target="_blank">WP-Table Reloaded</a> plugin. Sometimes one of your columns in that table might be contains the Numeric data type. For example, you have a column named &#8220;Quantity&#8221; so the data in that column should be the Numeric data type. In order to sort that column properly, then you have to decide and define that &#8220;Quantity&#8221; column as the Numeric data type. So here is the trick how you can set the data type for the certain column using WP-Table Reloaded plugin in your WordPress website.</p>
<ol>
<li>
Go to your wp-admin (Dashboard), click on <strong>Tools</strong> -> <strong>WP-Table Reloaded</strong>, edit your existing table, then insert this following code into your <strong>Custom Commands</strong> text field in the <strong>DataTables JavaScript Features</strong>:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&quot;aoColumns&quot;: [ { &quot;sSortDataType&quot;: &quot;dom-text&quot; }, { &quot;sSortDataType&quot;: &quot;dom-text&quot; }, { &quot;sSortDataType&quot;: &quot;dom-text&quot; }, { &quot;sSortDataType&quot;: &quot;dom-text&quot; }, { &quot;sSortDataType&quot;: &quot;numeric&quot;, &quot;sType&quot;: &quot;numeric&quot; }]</pre></div></div>

<p>From that code above, in order to define the columns, we use <strong>aoColumns</strong> as the keyword. We can see that from the first until the fourth column has <strong>sSortDataType</strong> property and the value is <strong>dom-text</strong>. In the fifth column, both <strong>sSortDataType</strong> and <strong>sType</strong> have the value of <strong>numeric</strong>.
</li>
<li>
Save the changes and reload your table in the front-end of your website.
</li>
</ol>
<p>The important thing that you need to know is when you define a column as the Numeric data type, then you cannot insert another the different data type. In addition, you cannot format the data, for example, by adding the comma or dot character as separator directly to the data.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F09%2F22%2Fhow-to-define-data-type-for-the-certain-column-using-wp-table-reloaded-plugin-of-wordpress%2F&amp;title=How%20to%20Define%20Data%20Type%20for%20the%20Certain%20Column%20Using%20WP-Table%20Reloaded%20Plugin%20of%20WordPress" id="wpa2a_2"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/09/22/how-to-define-data-type-for-the-certain-column-using-wp-table-reloaded-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Adjust Text Align for the Certain Row and Column in the Table Using WP-Table Reloaded Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/09/21/how-to-adjust-text-align-for-the-certain-rown-and-column-in-the-table-using-wp-table-reloaded-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/09/21/how-to-adjust-text-align-for-the-certain-rown-and-column-in-the-table-using-wp-table-reloaded-plugin-of-wordpress/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 04:52:01 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[column]]></category>
		<category><![CDATA[Custom CSS]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[stylesheet]]></category>
		<category><![CDATA[tabel]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Table Reloaded]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1449</guid>
		<description><![CDATA[One of the advantages of WP-Table Reloaded plugin is the ability to define your custom stylesheet from its Plugins Options section. It means, you don&#8217;t have to touch or edit the core file of this plugin. Since this will overide the default style that has been defined in the .css file of the plugin, then [...]]]></description>
			<content:encoded><![CDATA[<p>One of the advantages of <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/" title="WP Table Reloaded" target="_blank">WP-Table Reloaded</a> plugin is the ability to define your custom stylesheet from its <strong>Plugins Options</strong> section. It means, you don&#8217;t have to touch or edit the core file of this plugin. Since this will overide the default style that has been defined in the .css file of the plugin, then you don&#8217;t have to worry losing your customization in the core file after you update this plugin in the future. This following trick will give you the ideas how you can define your own stylesheet by yourself easily and quickly without having to edit the core file of the plugin. For example, in this case, I want to make all of the text align in the table heading (the first row in the entire table) to become align-center, and then make the text align in the whole first and fourth columns to become align-right, and finally, make the text align for the whole data in the third column to become align-center. </p>
<p>Here is the steps you have to do:</p>
<ol>
<li>
Go to your wp-admin (Dashboard) of your website, and click on the <strong>Tools</strong> -> <strong>WP-Table Reloaded</strong>, and then click on the <strong>Plugin Options</strong>.
</li>
<li>
Make sure you have already checked the &#8220;Yes, include and load the following custom CSS commands. This should be used to change the table layout and styling.&#8221; item, next to the &#8220;Custom CSS:&#8221; directive.
</li>
<li>
In the <strong>Custom CSS:</strong> directive, enter this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-2</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-3</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-4</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-5</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.column-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.column-4</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.column-3</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>From that code above, assuming there is only one table (with table id = 1) that I have created, so you will see that <strong>.wp-table-reloaded-id-1</strong> means that this style will be applied to the table which has the table id = 1. If you want to apply it also to another table (for example the table which table id = 2), then simply using <strong>.wp-table-reloaded-id-2</strong>, and so on.</p>
<p>Another important thing that you need to know is that if you want to change the table style only for the certain row and column, then you have to write down the <strong>.row</strong> part must precede the <strong>.column</strong>, as being shown in the following example:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-2</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-3</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-4</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.row-1</span> <span style="color: #6666ff;">.column-5</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>But if you want to change the style for the whole column (regardless which row it is), then you don&#8217;t need to include the .row, as being shown in the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.column-1</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.column-4</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.wp-table-reloaded-id-1</span> <span style="color: #6666ff;">.column-3</span> <span style="color: #00AA00;">&#123;</span> 
      <span style="color: #000000; font-weight: bold;">text-align</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">center</span><span style="color: #00AA00;">;</span> 
<span style="color: #00AA00;">&#125;</span></pre></div></div>

</li>
<li>
Save the changes, and make sure your table has a new style.
</li>
</ol>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F09%2F21%2Fhow-to-adjust-text-align-for-the-certain-rown-and-column-in-the-table-using-wp-table-reloaded-plugin-of-wordpress%2F&amp;title=How%20to%20Adjust%20Text%20Align%20for%20the%20Certain%20Row%20and%20Column%20in%20the%20Table%20Using%20WP-Table%20Reloaded%20Plugin%20of%20WordPress" id="wpa2a_4"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/09/21/how-to-adjust-text-align-for-the-certain-rown-and-column-in-the-table-using-wp-table-reloaded-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Change The Default Selected Record Count in WP Table Reloaded Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/09/20/how-to-change-the-default-selected-record-count-in-wp-table-reloaded-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/09/20/how-to-change-the-default-selected-record-count-in-wp-table-reloaded-plugin-of-wordpress/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 06:57:17 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[jumlah baris terpilih]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[selected record count]]></category>
		<category><![CDATA[selected row]]></category>
		<category><![CDATA[WP Table Reloaded]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1443</guid>
		<description><![CDATA[For those of you who are using the WP Table Reloaded plugin in your WordPress website, then you will find that until the 1.9.2 version, there is no setting that provided by the author of this plugin to change the default selected record count or rows in the table. It means that when you create [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are using the <a href="http://wordpress.org/extend/plugins/wp-table-reloaded/" title="WP Table Reloaded" target="_blank">WP Table Reloaded</a> plugin in your WordPress website, then you will find that until the 1.9.2 version, there is no setting that provided by the author of this plugin to change the default selected record count or rows in the table. It means that when you create a table which has the record count or rows in the table is more than 10, then you will see that by default, your table will display 10 rows for the very first time. Even this table has provided the other options value that you can choose to change to another value, sometimes you do not want to display 10 rows by default. The question is, how can I change this selected record count default value whereas there is no option setting regarding this, for example I want to change it with 50 so each time the table is reloaded, it will display the first 50 records? The next question: Can I also change or add the other values in the <strong>Show entry</strong> selector? Here is the modification I created to answer those both questions.</p>
<ol>
<li>
Open your <strong>/wp-content/plugins/wp-table-reloaded/js/jquery.datatables.min.js</strong> file, and find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">aLengthMenu=[10,25,50,100]</pre></div></div>

<p>then replace it with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">aLengthMenu=[5,10,25,50,100,200,500]</pre></div></div>

<p>In this case, we will add the other options besides the existing values &#8220;10,25,50,100&#8243; (4 options value) to become &#8220;5,10,25,50,100,200,500&#8243; (7 options value).
</li>
<li>
Still in that .js file, find again this code:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">this._iDisplayLength=10;this._iDisplayStart=0;this._iDisplayEnd=10;</pre></div></div>

<p>then replace it with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">this._iDisplayLength=50;this._iDisplayStart=0;this._iDisplayEnd=50;</pre></div></div>

<p>It means that we will change the default selected record count in the table from 10 to 50. For example, your table has 175 records or rows in it, then each time your table will be displayed, there are at least maximum 50 instead of 10 records in that table for the very first time.
</li>
</ol>
<p>Keep in mind that since this modification involves the javascript file that belongs to this plugin, then you have to re-apply the modification each time after you update this plugin to the latest version. Hope it helps.</p>
<p><strong>Edited</strong> (a few minutes after I submit this post): After involving discussion with Tobias in <a href="http://wordpress.org/support/topic/plugin-wp-table-reloaded-wp-tables-reloaded-add-show-all-option?replies=5" title="Add Show All Option" target="_blank">this thread</a>, I found the best approach in order to not edit the core file of this plugin.</p>
<p>Here is the trick how you can change the default selected record count or rows value and how you can change (add/edit/remove) the options value in the <strong>Show entries</strong> selector:</p>
<ol>
<li>
Go to your wp-admin (Dashboard), click on &#8220;Tools&#8221; -> &#8220;WP-Table Reloaded&#8221;, edit your existing table, then insert this following code (according to the original example in the modification above) into your &#8220;Custom Commands&#8221; text field in the &#8220;DataTables JavaScript Features&#8221;:</p>

<div class="wp_syntax"><div class="code"><pre class="js" style="font-family:monospace;">&quot;aLengthMenu&quot;: [[5, 10, 25, 50, 100, 200, 500, -1], [5, 10, 25, 50, 100, 200, 500, &quot;All&quot;]], &quot;iDisplayLength&quot;: 100</pre></div></div>

<p>There are two parts from the command code that we need to know.<br />
- <strong>aLengthMenu</strong>, holds the options value in &#8220;Show entries&#8221; selector that you can set it up by yourself. &#8220;-1&#8243; in the left side is equal with the &#8220;All&#8221; string that will be displayed in the front-end.<br />
- <strong>iDisplayLength</strong>, holds the default selected record count or rows when your table is reloaded for the very first time. I set it up with 100 instead of 50, in order to make sure that this command code will overide the change I made in the javascript file above.</p>
<p>The main benefit of this command code that I will not worry losing my modification after update it to the latest version.
</li>
<li>
Save the changes and see the results.
</li>
</ol>
<p>Again, thanks to Tobias for pointing it out to us. <img src='http://www.openscriptsolution.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F09%2F20%2Fhow-to-change-the-default-selected-record-count-in-wp-table-reloaded-plugin-of-wordpress%2F&amp;title=How%20to%20Change%20The%20Default%20Selected%20Record%20Count%20in%20WP%20Table%20Reloaded%20Plugin%20of%20WordPress" id="wpa2a_6"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/09/20/how-to-change-the-default-selected-record-count-in-wp-table-reloaded-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Translate &#8220;Continue Reading&#8221; Text in Genesis Slider 0.9.4 Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/09/15/how-to-translate-continue-reading-text-in-genesis-slider-0-9-4-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/09/15/how-to-translate-continue-reading-text-in-genesis-slider-0-9-4-plugin-of-wordpress/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 12:08:04 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Genesis]]></category>
		<category><![CDATA[Genesis Slider]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Read More]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[WordPress Theme]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1435</guid>
		<description><![CDATA[Today I changed some of my website that use Genesis Theme Framework using Genesis Slider plugin. This plugin allows you to create a simple slider that displays the featured image, along with the title and excerpt from each post or page. It seems that all went well, until I discovered the condition that the &#8220;Continue [...]]]></description>
			<content:encoded><![CDATA[<p>Today I changed some of my website that use <a href="http://www.studiopress.com" title="Genesis Theme Framework" target="_blank">Genesis Theme Framework</a> using <a href="http://www.studiopress.com/plugins/genesis-slider" title="Genesis Slider plugin" target="_blank">Genesis Slider</a> plugin. This plugin allows you to create a simple slider that displays the featured image, along with the title and excerpt from each post or page. It seems that all went well, until I discovered the condition that the &#8220;Continue Reading&#8221; text is not translated properly in the slider content. So I modified the plugin in order to support multi-language for the &#8220;Continue Reading&#8221;. I hope the author will include this fix in the next release. Some of them are the websites which have the content that supports for multi-language. One of my multi language websites that I have successfully modified is that you can see it from <a href="http://www.masinosinaga.com" title="Masino Sinaga - Never stop innovating ..." target="_blank">here</a>, and you could see the demo how it looks in another language <a href="http://www.masinosinaga.com/id/" title="Masino Sinaga - Tak pernah berhenti berinovasi" target="_blank">here</a>. </p>
<p>Only a small change, actually. Open your <strong>/wp-content/plugins/genesis-slider/plugin.php</strong> file, and find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$read_more</span> <span style="color: #339933;">=</span> genesis_get_slider_option<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'slideshow_more_text'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace it with this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$read_more</span> <span style="color: #339933;">=</span> __<span style="color: #009900;">&#40;</span>genesis_get_slider_option<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'slideshow_more_text'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'genesis-slider'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// modified by Masino Sinaga, September 15, 2011</span></pre></div></div>

<p>Hope it helps. <img src='http://www.openscriptsolution.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F09%2F15%2Fhow-to-translate-continue-reading-text-in-genesis-slider-0-9-4-plugin-of-wordpress%2F&amp;title=How%20to%20Translate%20%26%238220%3BContinue%20Reading%26%238221%3B%20Text%20in%20Genesis%20Slider%200.9.4%20Plugin%20of%20WordPress" id="wpa2a_8"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/09/15/how-to-translate-continue-reading-text-in-genesis-slider-0-9-4-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Get Current Language Code by Using qTranslate Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/08/08/how-to-get-current-language-code-by-using-qtranslate-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/08/08/how-to-get-current-language-code-by-using-qtranslate-plugin-of-wordpress/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 00:46:57 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[current language]]></category>
		<category><![CDATA[kode bahasa]]></category>
		<category><![CDATA[language code]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[qTranslate]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1395</guid>
		<description><![CDATA[For those of you who are using the qTranslate plugin and need to know how to get the current language code that selected by the visitors so that you can run a particular code that different for each language, then this following code is right for you. Included an example of using the code, for [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who are using the qTranslate plugin and need to know how to get the current language code that selected by the visitors so that you can run a particular code that different for each language, then this following code is right for you. Included an example of using the code, for instance, in this case your site uses English and Indonesian languages. Please adjust them with the language on your site.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>qtrans_getLanguage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">'en'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">// put your code here if the current language code is 'en' (English)</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span>qtrans_getLanguage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #666666; font-style: italic;">// put your code here if the current language code is 'id' (Indonesian)</span>
    <span style="color: #009900;">&#125;</span></pre></div></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F08%2F08%2Fhow-to-get-current-language-code-by-using-qtranslate-plugin-of-wordpress%2F&amp;title=How%20to%20Get%20Current%20Language%20Code%20by%20Using%20qTranslate%20Plugin%20of%20WordPress" id="wpa2a_10"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/08/08/how-to-get-current-language-code-by-using-qtranslate-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Add Home Link in WordPress Menu Using Genesis + Platinum Theme and qTranslate Plugin</title>
		<link>http://www.openscriptsolution.com/2011/08/07/how-to-add-home-link-in-wordpress-menu-using-genesis-platinum-theme-and-qtranslate-plugin/</link>
		<comments>http://www.openscriptsolution.com/2011/08/07/how-to-add-home-link-in-wordpress-menu-using-genesis-platinum-theme-and-qtranslate-plugin/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 09:18:13 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[beranda]]></category>
		<category><![CDATA[child theme]]></category>
		<category><![CDATA[framework theme]]></category>
		<category><![CDATA[Genesis]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[multibahasa]]></category>
		<category><![CDATA[multilanguage]]></category>
		<category><![CDATA[Platinum]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[tautan]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1393</guid>
		<description><![CDATA[Yesterday I changed the theme of this my website where it had previously used the iNove theme to Genesis theme framework and Platinum child theme. Everything went smoothly until I found a little problem. Because I used the qTranslate plugin for this multilingual website, whereas the last version of Genesis and Platinum; both of them [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I changed the theme of this my website where it had previously used the <strong>iNove</strong> theme to <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework Theme" target="_blank"><strong>Genesis</strong></a> theme framework and <strong>Platinum</strong> child theme. Everything went smoothly until I found a little problem. Because I used the <strong>qTranslate</strong> plugin for this multilingual website, whereas the last version of Genesis and Platinum; both of them which rely on the WordPress Menu, then I can not use the &#8220;Home&#8221; link that belongs to the WordPress Menu so it will adjust to the selected language visitor choose. This is the limitation of &#8220;Home&#8221; link using qTranslate with WordPress Menu. But I am not giving up easily. After doing some exploration from the official <a href="http://www.studiopress.com/" title="StudioPress" target="_blank">StudioPress</a> website, finally I managed to find a way how to add a link to the &#8220;Home&#8221; in accordance with the WordPress menu and this &#8220;Home&#8221; will be automatically adjusted to the selected language visitor choose. In this modification, I am using WordPress Menu (Genesis 1.7+ has used WordPress Menu, and Genesis Navigation is not being used anymore). If you are experiencing the same difficulty with which I experienced above, then the following modification is definitely right for you. </p>
<p>After this line of code in your <strong>functions.php</strong> file that located in Platinum child theme:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">require_once</span><span style="color: #009900;">&#40;</span>TEMPLATEPATH<span style="color: #339933;">.</span><span style="color: #0000ff;">'/lib/init.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>please add this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// Add &quot;Home&quot; link in WP Navigation Menu in order to support qTranslate plugin, by Masino Sinaga, August 7, 2011</span>
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_nav_menu_items'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'home_link'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> home_link<span style="color: #009900;">&#40;</span><span style="color: #000088;">$menu</span><span style="color: #339933;">,</span> <span style="color: #000088;">$args</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$args</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#41;</span><span style="color: #000088;">$args</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$args</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'theme_location'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">!=</span> <span style="color: #0000ff;">'primary'</span> <span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$menu</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>qtrans_getLanguage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">'en'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000088;">$home</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;li id=&quot;home&quot;&gt;&lt;a href=&quot;http://www.openscriptsolution.com&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">elseif</span><span style="color: #009900;">&#40;</span>qtrans_getLanguage<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #000088;">$home</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;li id=&quot;home&quot;&gt;&lt;a href=&quot;http://www.openscriptsolution.com/id/&quot;&gt;Beranda&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #000088;">$home</span><span style="color: #339933;">.</span><span style="color: #000088;">$menu</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>If you are still using the Genesis Navigation (only for older Genesis version), then simply replace this following code above:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_nav_menu_items'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'home_link'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'genesis_nav_items'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'home_link'</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F08%2F07%2Fhow-to-add-home-link-in-wordpress-menu-using-genesis-platinum-theme-and-qtranslate-plugin%2F&amp;title=How%20to%20Add%20Home%20Link%20in%20WordPress%20Menu%20Using%20Genesis%20%2B%20Platinum%20Theme%20and%20qTranslate%20Plugin" id="wpa2a_12"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/08/07/how-to-add-home-link-in-wordpress-menu-using-genesis-platinum-theme-and-qtranslate-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display All Posts in a Category Using &#8220;Category Show&#8221; Plugin And Its Modification In Order To Use SEO Permalink and To Prevent Displaying of Double Posts</title>
		<link>http://www.openscriptsolution.com/2011/07/17/how-to-display-all-posts-in-a-category-using-category-show-plugin-and-its-modification-in-order-to-use-seo-permalink-and-to-prevent-displaying-of-double-posts/</link>
		<comments>http://www.openscriptsolution.com/2011/07/17/how-to-display-all-posts-in-a-category-using-category-show-plugin-and-its-modification-in-order-to-use-seo-permalink-and-to-prevent-displaying-of-double-posts/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 12:20:42 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Category Show]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[posts per categories]]></category>
		<category><![CDATA[posts per category]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1357</guid>
		<description><![CDATA[Today I decided want to display all posts that located in the certain category, and each category will be stored in the different page for one of my WordPress websites. So I was starting to search the plugin regarding it. I found that there are three plugins that match with my needs. Posts per Cat [...]]]></description>
			<content:encoded><![CDATA[<p>Today I decided want to display all posts that located in the certain category, and each category will be stored in the different page for one of my WordPress websites. So I was starting to search the plugin regarding it. I found that there are three plugins that match with my needs. <a href="http://wordpress.org/extend/plugins/posts-per-cat/" title="WordPress Posts per Cat plugin" target="_blank">Posts per Cat</a> is actualy a good one, unfortunately, it only supports for one occurance and only for one page, since it depends on the options that defined in wp-admin. The other is <a href="http://wordpress.org/extend/plugins/list-posts-by-categories/" title="WordPress List Post by Categories" target="_blank">List Posts by Categories</a>; it uses shortcode in order to display the posts list that located in the certain category and it almost matches with my need, until I found that this plugin does not work at all when I tried. Until I found and decided to start using <a href="http://wordpress.org/extend/plugins/wp-catergory-show/" title="WordPress Category Show plugin" target="_blank"><strong>Category Show</strong></a> plugin and it matches with my needs. This plugin will be able to show all posts from a category/tag into a page/post with order support. Unfortunately, I found that some posts are displayed twice instead of once, and also the link to the post uses guid that derived from <strong>guid</strong> field in <strong>_posts</strong> table, instead of the permalink that has been setup from Settings -> Permalink in wp-admin menu. So I modified this plugin in order to display the distinct post within a category. Also, the modification will make the link that belongs to the post uses the permalink by using WordPress <strong>get_permalink()</strong> function instead of using guid value directly from database. In addition, I also changed the bullet style for post item to become numbering style, also removing the description of the category. You can see its demo from <a href="http://www.gkiharapanindah.org/download/rekap-kidung-jemaat/" title="GKI Harapan Indah" target="_blank">this website</a> (sorry if that website is only in Indonesian language). Actually, I am writing an article regarding this modification in order to keep the changes I made if the author upgrade the plugin. <span id="more-1357"></span></p>
<p>Open your <strong>/wp-category-show/wp-category-show.php</strong> file, and find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">				<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat2post</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT po.post_title, po.guid
												 FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span> po
												 INNER JOIN <span style="color: #006699; font-weight: bold;">$wpdb-&gt;term_relationships</span> re ON re.object_id = po.ID
												 INNER JOIN <span style="color: #006699; font-weight: bold;">$wpdb-&gt;term_taxonomy</span> ta ON ta.term_taxonomy_id = re.term_taxonomy_id
												 WHERE ta.term_id = <span style="color: #006699; font-weight: bold;">$res-&gt;term_id</span>
												 AND po.post_status = 'publish'
												 AND po.post_type = 'post'
												 ORDER BY <span style="color: #006699; font-weight: bold;">$order_name</span> <span style="color: #006699; font-weight: bold;">$order_type</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
					<span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// setting an empty array</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;h3&gt;<span style="color: #006699; font-weight: bold;">$res-&gt;name</span>&lt;/h3&gt;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">description</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
						<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;blockquote&gt;<span style="color: #006699; font-weight: bold;">$res-&gt;description</span>&lt;/blockquote&gt;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;ul&gt;'</span><span style="color: #339933;">;</span>
					<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat2post</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span>
						<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&lt;li&gt;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$post-&gt;guid</span><span style="color: #000099; font-weight: bold;">\&quot;</span> rel=<span style="color: #000099; font-weight: bold;">\&quot;</span>bookmark<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$post-&gt;post_title</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #006699; font-weight: bold;">$post-&gt;post_title</span>&lt;/a&gt;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;/ul&gt;'</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">				<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat2post</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;SELECT DISTINCT(po.ID), po.post_title
					FROM <span style="color: #006699; font-weight: bold;">$wpdb-&gt;posts</span> po
					INNER JOIN <span style="color: #006699; font-weight: bold;">$wpdb-&gt;term_relationships</span> re ON re.object_id = po.ID
					INNER JOIN <span style="color: #006699; font-weight: bold;">$wpdb-&gt;term_taxonomy</span> ta ON ta.term_taxonomy_id = re.term_taxonomy_id
					WHERE ta.term_id = <span style="color: #006699; font-weight: bold;">$res-&gt;term_id</span>
					AND po.post_status = 'publish'
					AND po.post_type = 'post'
					ORDER BY <span style="color: #006699; font-weight: bold;">$order_name</span> <span style="color: #006699; font-weight: bold;">$order_type</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
					<span style="color: #000088;">$html</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// setting an empty array</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;h2&gt;<span style="color: #006699; font-weight: bold;">$res-&gt;name</span>&lt;/h2&gt;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$res</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">description</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
						<span style="color: #666666; font-style: italic;">// $html[] = &quot;&lt;blockquote&gt;$res-&gt;description&lt;/blockquote&gt;&quot;;</span>
						<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;ol&gt;'</span><span style="color: #339933;">;</span>
					<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$cat2post</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#41;</span>
						<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&lt;li&gt;&lt;a href=<span style="color: #000099; font-weight: bold;">\&quot;</span>&quot;</span><span style="color: #339933;">.</span>get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span> rel=<span style="color: #000099; font-weight: bold;">\&quot;</span>bookmark<span style="color: #000099; font-weight: bold;">\&quot;</span> title=<span style="color: #000099; font-weight: bold;">\&quot;</span><span style="color: #006699; font-weight: bold;">$post-&gt;post_title</span><span style="color: #000099; font-weight: bold;">\&quot;</span>&gt;<span style="color: #006699; font-weight: bold;">$post-&gt;post_title</span>&lt;/a&gt;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
					<span style="color: #000088;">$html</span><span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'&lt;/ol&gt;'</span><span style="color: #339933;">;</span></pre></div></div>

<p>Is that all of the modification? Yep, that&#8217;s all!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F07%2F17%2Fhow-to-display-all-posts-in-a-category-using-category-show-plugin-and-its-modification-in-order-to-use-seo-permalink-and-to-prevent-displaying-of-double-posts%2F&amp;title=How%20to%20Display%20All%20Posts%20in%20a%20Category%20Using%20%26%238220%3BCategory%20Show%26%238221%3B%20Plugin%20And%20Its%20Modification%20In%20Order%20To%20Use%20SEO%20Permalink%20and%20To%20Prevent%20Displaying%20of%20Double%20Posts" id="wpa2a_14"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/07/17/how-to-display-all-posts-in-a-category-using-category-show-plugin-and-its-modification-in-order-to-use-seo-permalink-and-to-prevent-displaying-of-double-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make SEO SearchTerms Tagging 2 Plugin Can Display the Actual Link to Search Terms Which Not Derived from WordPress Post or Page</title>
		<link>http://www.openscriptsolution.com/2011/07/16/how-to-make-seo-searchterms-tagging-2-plugin-can-display-the-actual-link-to-search-terms-which-not-derived-from-wordpress-post-or-page/</link>
		<comments>http://www.openscriptsolution.com/2011/07/16/how-to-make-seo-searchterms-tagging-2-plugin-can-display-the-actual-link-to-search-terms-which-not-derived-from-wordpress-post-or-page/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 15:08:36 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Pods CMS]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[SEO SearchTerms Tagging 2]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1353</guid>
		<description><![CDATA[The following modification will show you how to make the SEO SearchTerms Tagging 2 (STT2) plugin can display the actual link to the search terms which not derived from WordPress Post or Page. As we know, not all search terms that produced by this plugin has a link to the specific Post and Page content. [...]]]></description>
			<content:encoded><![CDATA[<p>The following modification will show you how to make the <a href="http://wordpress.org/extend/plugins/searchterms-tagging-2/" title="SEO SearchTerms Tagging 2" target="_blank">SEO SearchTerms Tagging 2 (STT2)</a> plugin can display the actual link to the search terms which not derived from WordPress Post or Page. As we know, not all search terms that produced by this plugin has a link to the specific Post and Page content. When visitor came from the search engine to the site that uses this STT2 plugin, there are three possibilites that can be happened. The first possibility: visitor clicks on the link that point to the certain Post or Page in WordPress, so the search term has a link to the actual post/page and the value that stored in <strong>post_id</strong> field in <strong>stt2_meta</strong> table is greater than zero. The second possibility: visitor clicks on the link that point to the homepage of the site, even the search engine provides the link to the related post/page. This will cause the search term has a link to the homepage/front of the site (not to the actual related post/page), and the value in <strong>post_id</strong> field is zero. The third possibility: visitor clicks on the link that point to the certain custom content type, for example, you are using <a href="http://podscms.org" title="Pods CMS" target="_blank">Pods CMS</a> plugin. This will cause the value in <strong>post_id</strong> is always zero, no matter what. So this modification will give you solution in order to overcome the problem in the third possibility (in this case, the first possibility is normal, whereas the second one is also normal, but can be happened anytime as if this cause the search term does not have the link to the Post nor Page in WordPress). <span id="more-1353"></span></p>
<ol>
<li>
First of all, we have to alter the <strong>_stt2_meta</strong> table structure that used by the STT2 plugin. Add a new field to this table named <strong>content_url</strong> with the field type = <strong>text</strong>. The reason why we use text field type since we have to handle if the URI to related search term has the number of character greater than 255. Afterwards, don&#8217;t forget to edit the value of this new field with slash character ( <strong>/</strong> ), since we cannot define the default value when we are creating that new text field type.
</li>
<li>
Open your <strong>/searchterms-tagging-2/searchterms-tagging2.php</strong> file, and find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;SELECT `meta_value`,`meta_count`,`post_id` FROM `&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta` ORDER BY `last_modified` DESC LIMIT &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$count</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;;&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;SELECT `meta_value`,`meta_count`,`post_id`,`content_url` FROM `&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta` ORDER BY `last_modified` DESC LIMIT &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$count</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;;&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li>
Still in the same file above, find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$success</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prepare</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;INSERT INTO &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta ( `post_id`,`meta_value`,`meta_count` ) VALUES ( <span style="color: #009933; font-weight: bold;">%s</span>, <span style="color: #009933; font-weight: bold;">%s</span>, 1 )
			ON DUPLICATE KEY UPDATE `meta_count` = `meta_count` + 1&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$meta_value</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$url</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$success</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">query</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prepare</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;INSERT INTO &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta ( `post_id`,`meta_value`,`meta_count`,`content_url` ) VALUES ( <span style="color: #009933; font-weight: bold;">%s</span>, <span style="color: #009933; font-weight: bold;">%s</span>, 1, '<span style="color: #006699; font-weight: bold;">$url</span>' )
			ON DUPLICATE KEY UPDATE `meta_count` = `meta_count` + 1&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ID</span><span style="color: #339933;">,</span> <span style="color: #000088;">$meta_value</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li>
Still in the same file above, find again this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> get_permalink<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span> <span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'http://'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_NAME'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">content_url</span> <span style="color: #339933;">:</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li>
Find again this code in that file above:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span> <span style="color: #009900;">&#41;</span> ? get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span> <span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'http://'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_NAME'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">content_url</span> <span style="color: #339933;">:</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li>
Find again this code in the same file above:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;SELECT `meta_value` FROM `&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta` ORDER BY RAND() LIMIT &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$count</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;;&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">get_results</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;SELECT `post_id`,`meta_value`,`content_url` FROM `&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$wpdb</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">prefix</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;stt2_meta` ORDER BY RAND() LIMIT &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$count</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;;&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
<li>
Open your <strong>/searchterms-tagging-2/widget.php</strong> file, and find this code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span> <span style="color: #009900;">&#41;</span> ? get_bloginfo<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'url'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$permalink</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span> <span style="color: #cc66cc;">0</span> <span style="color: #339933;">==</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span> <span style="color: #009900;">&#41;</span> ? <span style="color: #0000ff;">'http://'</span><span style="color: #339933;">.</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'SERVER_NAME'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">content_url</span> <span style="color: #339933;">:</span> get_permalink<span style="color: #009900;">&#40;</span><span style="color: #000088;">$term</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</li>
</ol>
<p>The conclusion for all of modification above is if the <strong>post_id</strong> value in <strong>_stt2_meta</strong> table is 0, then save the URI of the search term that came from the search engine. So, when STT2 display the link to each search term, then it will show the link to the URI instead of to the homepage link that still happened until when this solution was found.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F07%2F16%2Fhow-to-make-seo-searchterms-tagging-2-plugin-can-display-the-actual-link-to-search-terms-which-not-derived-from-wordpress-post-or-page%2F&amp;title=How%20to%20Make%20SEO%20SearchTerms%20Tagging%202%20Plugin%20Can%20Display%20the%20Actual%20Link%20to%20Search%20Terms%20Which%20Not%20Derived%20from%20WordPress%20Post%20or%20Page" id="wpa2a_16"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/07/16/how-to-make-seo-searchterms-tagging-2-plugin-can-display-the-actual-link-to-search-terms-which-not-derived-from-wordpress-post-or-page/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Make Your WordPress Editor Works Properly When Using qTranslate Plugin</title>
		<link>http://www.openscriptsolution.com/2011/07/14/how-to-make-your-wordpress-editor-works-properly-when-using-qtranslate-plugin/</link>
		<comments>http://www.openscriptsolution.com/2011/07/14/how-to-make-your-wordpress-editor-works-properly-when-using-qtranslate-plugin/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 12:49:39 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1346</guid>
		<description><![CDATA[Have you ever got this following message when you want to add or write your article in your WordPress website that using qTranslate plugin? Well, here is the message: &#8220;The qTranslate Editor has disabled itself because it hasn&#8217;t been tested with your WordPress version yet. This is done to prevent WordPress from malfunctioning. You can [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever got this following message when you want to add or write your article in your WordPress website that using qTranslate plugin? Well, here is the message: &#8220;The qTranslate Editor has disabled itself because it hasn&#8217;t been tested with your WordPress version yet. This is done to prevent WordPress from malfunctioning. You can reenable it by clicking here (may cause data loss! Use at own risk!). To remove this message permanently, please update qTranslate to the corresponding version.&#8221; This message actually happened when you upgrade your WordPress from your Dashboard, at the same time, the author of qTranslate plugin has not released the new version that support with that newest WordPress. For example, in this case below, I upgraded from WordPress 3.2 to 3.2.1, then my WordPress editor will not work anymore. It&#8217;s becuase the author has not released the version that support with WordPress 3.2.1, yet. So here is the solution to fix the problem. Just for your information, there is no problem after I modified the following script each time I got the problem. <span id="more-1346"></span></p>
<p>Open your <strong>/wp-content/plugins/qtranslate/qtranslate.php</strong>, and find this code (actually, the version you will see below depends on your qTranslate plugin that support for the certain WordPress version, in this case I am using qTranslate that support for WordPress version 3.2):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'QT_SUPPORTED_WP_VERSION'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'3.2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>then replace with this following code (in this case, I upgraded from WordPress 3.2 to 3.2.1. Adjust with your WordPress new version after upgrading):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">define</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'QT_SUPPORTED_WP_VERSION'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'3.2.1'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F07%2F14%2Fhow-to-make-your-wordpress-editor-works-properly-when-using-qtranslate-plugin%2F&amp;title=How%20to%20Make%20Your%20WordPress%20Editor%20Works%20Properly%20When%20Using%20qTranslate%20Plugin" id="wpa2a_18"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/07/14/how-to-make-your-wordpress-editor-works-properly-when-using-qtranslate-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Second Attempt to Translate SEO SearchTerms Tagging 2 Plugin of WordPress</title>
		<link>http://www.openscriptsolution.com/2011/06/18/my-second-attempt-to-translate-seo-searchterms-tagging-2-plugin-of-wordpress/</link>
		<comments>http://www.openscriptsolution.com/2011/06/18/my-second-attempt-to-translate-seo-searchterms-tagging-2-plugin-of-wordpress/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 15:28:15 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[SEO Friendly]]></category>
		<category><![CDATA[SEO SearchTerms Tagging 2]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1321</guid>
		<description><![CDATA[For those of you who have read my previous article regarding the title above, it is: How to Make SEO SearchTerms Tagging 2 Plugin Supports Multi Language, now I have a good news again for you. Even the author of this plugin has not updated based on my first attempt to translate this plugin so [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who have read my previous article regarding the title above, it is: <a href="http://www.openscriptsolution.com/2010/08/29/how-to-make-seo-searchterms-tagging-2-plugin-supports-multi-language/" title="How to Make SEO SearchTerms Tagging 2 Plugin Supports Multi Language" target="_blank">How to Make SEO SearchTerms Tagging 2 Plugin Supports Multi Language</a>, now I have a good news again for you. Even the author of this plugin has not updated based on my first attempt to translate this plugin so it will support multilingual (although I had sent him a message and he promised me to upgrade it), today I have successfully created the multilingual version of it. This time I modified it based on the last version he released; version 1.52. Hopefully <a href="http://exclusivewordpress.com/searchterms-tagging-2-plugin" title="Purwedi Kurniawan">Purwedi Kurniawan</a> will kindly respond this my second attempt. <span id="more-1321"></span></p>
<p>In order to reduce the file size, I removed the 4 picture files inside the original plugin. Please be kind! You can <a href="http://www.openscriptsolution.com/wp-content/uploads/searchterms-tagging-2.1.52_multi-language.rar">download it from here</a>. Hope it helps for those of you who still need the multilingual version.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F06%2F18%2Fmy-second-attempt-to-translate-seo-searchterms-tagging-2-plugin-of-wordpress%2F&amp;title=My%20Second%20Attempt%20to%20Translate%20SEO%20SearchTerms%20Tagging%202%20Plugin%20of%20WordPress" id="wpa2a_20"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/06/18/my-second-attempt-to-translate-seo-searchterms-tagging-2-plugin-of-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
