<?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; adjust</title>
	<atom:link href="http://www.openscriptsolution.com/tag/adjust/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 Display The Wider Logo in WordPress Login Page using Wp Customized Login Plugin</title>
		<link>http://www.openscriptsolution.com/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/</link>
		<comments>http://www.openscriptsolution.com/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 05:10:24 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[adjust]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[full]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1086</guid>
		<description><![CDATA[Today I customized the WordPress logo that appears in wp-admin page with my own logo on one of my websites. I have been using Wp Customized Login plugin for this purpose. After installing and activating the plugin, everything seemed okay, until I found something that annoying me. It was about my own logo did not [...]]]></description>
			<content:encoded><![CDATA[<p>Today I customized the WordPress logo that appears in wp-admin page with my own logo on one of my websites. I have been using <a href="http://wordpress.org/extend/plugins/wp-customized-login/" target="_blank">Wp Customized Login plugin</a> for this purpose. After installing and activating the plugin, everything seemed okay, until I found something that annoying me. It was about my own logo did not appear full properly. The image seemed need to be a little too left and stops a little before the right side, since my dimension logo size is 500 pixels (width) x 100 pixels (height). Meanwhile, the recommended logo width by WordPress is about 300 pixels. After reading from <a href="http://www.thinkinginwordpress.com/2008/12/customized-wordpress-login-page-plugin/comment-page-1/#comment-54">the related comments in author&#8217;s website</a>, then I found the solution how to overcome my problem based on the comment from the author of this plugin. <span id="more-1086"></span></p>
<p>Open your <strong>/wp-content/plugins/wp-customized-login/custom-login.css</strong> file, and find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#login</span> h1 a<span style="color: #00AA00;">&#123;</span><span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">logo.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

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

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
3
4
5
6
7
8
</pre></td><td class="code"><pre class="css" style="font-family:monospace;"><span style="color: #cc00cc;">#login</span> h1 a<span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #993333;">transparent</span> <span style="color: #993333;">url</span><span style="color: #00AA00;">&#40;</span><span style="color: #ff0000; font-style: italic;">logo.png</span><span style="color: #00AA00;">&#41;</span> <span style="color: #993333;">no-repeat</span> <span style="color: #993333;">scroll</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span><span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* adjust it with your logo's height */</span>
  <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">500px</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* adjust it with your logo's width */</span>
  <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span><span style="color: #933;">-80px</span><span style="color: #00AA00;">;</span>  <span style="color: #808080; font-style: italic;">/* adjust it in order to make your logo centered */</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>You can see the demo result of the modification above from this login page of the following webiste: <a href="http://www.visualbasicindonesia.com/wp-admin/" target="_blank">Visual Basic Indonesia</a>.<br />
Hopefully this is helpful for you.</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%2F2010%2F01%2F09%2Fhow-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin%2F&amp;title=How%20to%20Display%20The%20Wider%20Logo%20in%20WordPress%20Login%20Page%20using%20Wp%20Customized%20Login%20Plugin" 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/2010/01/09/how-to-display-the-wider-logo-in-wordpress-login-page-using-wp-customized-login-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adjust PS Auto Sitemap v1.1.3 with qTranslate v2.4.3 Plugins</title>
		<link>http://www.openscriptsolution.com/2009/09/08/adjust-ps-auto-sitemap-v1-1-3-with-qtranslate-v2-4-3-plugins/</link>
		<comments>http://www.openscriptsolution.com/2009/09/08/adjust-ps-auto-sitemap-v1-1-3-with-qtranslate-v2-4-3-plugins/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 04:26:07 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[adjust]]></category>
		<category><![CDATA[compatible]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[site map]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=241</guid>
		<description><![CDATA[Today I installed and used PS Auto Sitemap plugin for this website. It is a plugin that automatically generates a site map page from your WordPress site. Easy to install for beginners and easy to customize for experts. You may change the settings of the display of the lists from administration page. Several neat CSS [...]]]></description>
			<content:encoded><![CDATA[<p>Today I installed and used <a href="http://wordpress.org/extend/plugins/ps-auto-sitemap/" target="_blank">PS Auto Sitemap</a> plugin for this website. It is a plugin that automatically generates a site map page from your WordPress site. Easy to install for beginners and easy to customize for experts. You may change the settings of the display of the lists from administration page. Several neat CSS skins for the site map tree also available. Since I also used <a href="http://www.qianqin.de" target="_blank">qTranslate plugin</a> for translating the content of my website, then I had to modify the script belongs to the PS Auto Sitemap plugin in order to be able displaying its content according to the current active language. Especially in the part of code for displaying the post title. Only small change, indeed. <span id="more-241"></span></p>
<p>Open <strong>ps_auto_sitemap.php</strong> file, and find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>233
234
235
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">   <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$category_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$post_list_in_category</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;li class=&quot;post-item post-item-'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> get_permalink<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot; title=&quot;'</span> <span style="color: #339933;">.</span> attribute_escape<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_title'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;'</span> <span style="color: #339933;">.</span> wp_specialchars<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_title'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/a&gt;&lt;/li&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>replace with:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>233
234
235
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">   <span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$category_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$post</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #000088;">$post_list_in_category</span> <span style="color: #339933;">.=</span> <span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;li class=&quot;post-item post-item-'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> get_permalink<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'ID'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot; title=&quot;'</span> <span style="color: #339933;">.</span> attribute_escape<span style="color: #009900;">&#40;</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_title'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;'</span> <span style="color: #339933;">.</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'post_title'</span><span style="color: #009900;">&#93;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/a&gt;&lt;/li&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
   <span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>There was one special note that important to know (for those of you who have just used this plugin for the very first time). Perhaps, you will get confused (actually, this was also happened to me) when you see this plugin&#8217;s setting from admin panel. There is a <strong>PostID of the sitemap</strong> directive there. PostID here has the meaning as Page ID that you have to created first, since this site map content would be located on that page. I suggest to the author of this plugin, IMHO it would be better if we called it as <strong>PageID</strong> instead of <strong>PostID</strong>.</p>
<p>Now, let us back again to the main topic. After you create a new page, then please add this tag in the page content, while you are in HTML mode:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!-- SITEMAP CONTENT REPLACE POINT --&gt;</pre></div></div>

<p>and then save this page. Afterwards, go to the list of your pages in admin panel. You will see from your list of the pages, the ID number of that new page you have just added. Enter that page ID to the <strong>PostID of the sitemap</strong>, and your site map is ready to use! That&#8217;s so simple, right?</p>
<p>This has been tested and working good in <strong>PS Auto Sitemap version 1.1.3</strong> and <strong>qTranslate version 2.4.3</strong>.</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%2F2009%2F09%2F08%2Fadjust-ps-auto-sitemap-v1-1-3-with-qtranslate-v2-4-3-plugins%2F&amp;title=Adjust%20PS%20Auto%20Sitemap%20v1.1.3%20with%20qTranslate%20v2.4.3%20Plugins" 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/2009/09/08/adjust-ps-auto-sitemap-v1-1-3-with-qtranslate-v2-4-3-plugins/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Adjust MicroKid Related Posts v2.3 with qTranslate v2.4.3 Plugins</title>
		<link>http://www.openscriptsolution.com/2009/08/22/adjust-microkid-related-posts-v2-3-with-qtranslate-v2-4-3-plugins/</link>
		<comments>http://www.openscriptsolution.com/2009/08/22/adjust-microkid-related-posts-v2-3-with-qtranslate-v2-4-3-plugins/#comments</comments>
		<pubDate>Sat, 22 Aug 2009 14:44:53 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[adjust]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[MicroKid]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[qTranslate]]></category>
		<category><![CDATA[related]]></category>
		<category><![CDATA[translation]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=29</guid>
		<description><![CDATA[I have been using qTranslate plugins for the last two days. I love this plugins so much since it is a simple plugins, yet easy to use and also has the powerful feature until now, especially when I edit or add the new post. Simply click the tab regarding to the language you want. If [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using <a href="http://wordpress.org/extend/plugins/qtranslate/" target="_blank"><strong>qTranslate</strong></a> plugins for the last two days. I love this plugins so much since it is a simple plugins, yet easy to use and also has the powerful feature until now, especially when I edit or add the new post. Simply click the tab regarding to the language you want. If I compare with the other translate plugins, qTranslate is still the best, at least for me. <span id="more-29"></span></p>
<p>Today I started to use <a href="http://www.microkid.net/wordpress/related-posts/" target="_blank"><strong>MicroKid Related Posts</strong></a> plugins for displaying the Related Posts at the bottom of the post. Unfortunately, I found a little bit problem after I have succeeded to implement this plugins. What was that? Well, since the post title has been saved by qTranslate plugins in one field in wp_posts table for all active languages, then each time the post title displayed, it contains of the title post belong to those all languages, and there is no space between them.</p>
<p>For example: I already have a post with title in English &#8220;Welcome to My World&#8221; whereas in Indonesian language this has the meaning as &#8220;Selamat datang di Dunia Saya&#8221;. For those of you who has not tried this plugins, the value for the post_title field would be like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!--:en--&gt;Welcome to My World&lt;!--:--&gt;&lt;!--:id--&gt;Selamat datang di Dunia Saya&lt;!--:--&gt;</pre></div></div>

<p>that is why when it displayed the result will become like this:</p>
<p>&#8220;<strong>Welcome to My WorldSelamat datang di Dunia Saya</strong>&#8221;</p>
<p>whereas between one title with another belongs to other language does not separated by space character, and I think this is something that looks like not so good.</p>
<p>When I search this post and then select this post title as related post for my new post, then the title of this related post will become: &#8220;Welcome to My WorldSelamat datang di Dunia Saya&#8221;. As you can see, that post_title being shown contains of the both active language; English and Indonesian. I think it would be better if it should be like this:</p>
<p><strong>Welcome to My World</strong> if the selected language is English,<br />
or:<br />
<strong>Selamat datang di Dunia Saya</strong> is the selected language is Indonesian.</p>
<p>This is an interested challenge for me. So I started to search the script related to this, and trying to make it came true.</p>
<p>So, here was I made:</p>
<p><strong>1.</strong> Open <strong>mrp-search.php</strong> file belongs to MicroKid Related Posts plugins, and find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>55
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$results</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$result</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>

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

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>55
56
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$results</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$result</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$related_post_title</span> <span style="color: #339933;">=</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$result</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>also, find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>63
64
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$result</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">post_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt; &lt;a href=&quot;'</span><span style="color: #339933;">.</span>get_permalink<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$result</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;
     title=&quot;View this post&quot; target=&quot;_blank&quot;&gt;&amp;rsaquo;&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>and replace with this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>63
64
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$related_post_title</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;/a&gt; &lt;a href=&quot;'</span><span style="color: #339933;">.</span>get_permalink<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$result</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;
     title=&quot;View this post&quot; target=&quot;_blank&quot;&gt;&amp;rsaquo;&lt;/a&gt;&lt;/li&gt;'</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>We have done with the mrp-search.php file.</p>
<p><strong>2.</strong> The next step is that we have to edit the code in <strong>microkids-related-posts.php</strong> file.<br />
Open the file and find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>95
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>

<p>replace with this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>95
96
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$related_post_title</span> <span style="color: #339933;">=</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$related_post_title</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>also, find this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>317
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span>  <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>

<p>and replace with this:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>317
318
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span>  <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$related_post_title</span> <span style="color: #339933;">=</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$related_post_title</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>then, find also this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>367
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span>  <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span></pre></td></tr></table></div>

<p>and replace with this code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>367
368
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$related_posts</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$related_post_id</span> <span style="color: #339933;">=&gt;</span> <span style="color: #000088;">$related_post_title</span>  <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$related_post_title</span> <span style="color: #339933;">=</span> wp_specialchars<span style="color: #009900;">&#40;</span>qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage<span style="color: #009900;">&#40;</span><span style="color: #000088;">$related_post_title</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>That&#8217;s all. Now the title post in <strong>Related Posts</strong> section will look better than before. You can see the result in the bottom of this post at the <strong>Related Posts</strong> section, when you display a post with full-mode.</p>
<p>This has been tested and working good in <strong>MicroKid Related Posts version 2.3</strong> and <strong>qTranslate version 2.4.3</strong>.</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%2F2009%2F08%2F22%2Fadjust-microkid-related-posts-v2-3-with-qtranslate-v2-4-3-plugins%2F&amp;title=Adjust%20MicroKid%20Related%20Posts%20v2.3%20with%20qTranslate%20v2.4.3%20Plugins" 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/2009/08/22/adjust-microkid-related-posts-v2-3-with-qtranslate-v2-4-3-plugins/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
