<?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>Soluvas &#187; WordPress</title>
	<atom:link href="http://www.soluvas.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.soluvas.com</link>
	<description>Business Marketing Support System</description>
	<lastBuildDate>Wed, 22 Jun 2011 10:38:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Patch Disqus Plugin Agar `Allow Comments` di WordPress Tetap Berfungsi</title>
		<link>http://www.soluvas.com/disqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=disqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked</link>
		<comments>http://www.soluvas.com/disqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 05:59:06 +0000</pubDate>
		<dc:creator>Hendy Irawan</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Blog software]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[Content management systems]]></category>
		<category><![CDATA[dan social media]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[Disqus]]></category>
		<category><![CDATA[komentar]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[PHP programming language]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://www.soluvas.com/2009/09/disqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked/</guid>
		<description><![CDATA[Disqus adalah sebuah jasa penyedia layanan comments hosting (komentar) untuk blog dan social media. Disqus mempunyai plugin untuk WordPress sehingga sangat mudah digunakan. Satu kelemahan dari plugin ini adalah tetap menampilkan form komentar Disqus di semua blog post maupun pages, meskipun sudah kita disable dengan menghilangkan tanda centang di &#8220;Allow Comments&#8221; untuk halaman-halaman yang kita [...]


No related posts.

Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.soluvas.com%2Fdisqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.soluvas.com%2Fdisqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked%2F&amp;source=Soluvas&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.disqus.com/" rel="nofollow" style="font-weight: bold;"  target="_blank">Disqus</a> adalah sebuah jasa penyedia layanan <span style="font-style: italic;">comments hosting</span> (komentar) untuk blog dan social media. Disqus mempunyai plugin untuk WordPress sehingga sangat mudah digunakan.</p>
<p><a href="http://www.flickr.com/photos/26322472@N05/3933562340" rel="nofollow" ><img src="http://farm4.static.flickr.com/3527/3933562340_0e29c81cbc_m.jpg" alt="" /></a></p>
<p>Satu kelemahan dari plugin ini adalah tetap menampilkan form komentar Disqus di semua <span style="font-style: italic;">blog post</span> maupun <span style="font-style: italic;">pages</span>, meskipun sudah kita <span style="font-style: italic;">disable</span> dengan menghilangkan tanda centang di &#8220;Allow Comments&#8221; untuk halaman-halaman yang kita inginkan.</p>
<p><span style="font-weight: bold;">UPDATE:</span> <a href="http://wordpress.org/extend/plugins/disqus-comment-system/" rel="nofollow" >Plugin Disqus terbaru</a> sudah memperbaiki kelemahan ini, sehingga patch ini tidak lagi dibutuhkan.</p>
<p>Solusinya adalah <span style="font-style: italic;">patch</span> yang kita terapkan pada plugin Disqus tersebut. Caranya:
<ol>	
<li>Login ke WordPress Admin.</li>
<p>	
<li>Klik menu Plugins &gt; Editor.</li>
<p>	
<li>Pilih plugin &#8220;DISQUS Comment System&#8221;</li>
<p>	
<li>Cari baris yang berisi <span style="font-style: italic;">code</span> berikut: (sekitar baris ke-100)
<pre>if ( ! (is_single() || is_page() || $withcomments) ) {
&nbsp; return;
}</pre>
<p></li>
<p>	
<li>Lalu ganti dengan <span style="font-style: italic;">code</span> berikut:
<pre>if ( ('closed' == $post-&gt;comment_status) || ('page' == $post-&gt;post_type)) {&lt;br /&gt;&nbsp; return;&lt;br /&gt;}&lt;br /&gt;if ( ! (is_single() || is_page() || $withcomments) ) {&lt;br /&gt;&nbsp; return;&lt;br /&gt; }</pre>
<p></li>
<p></ol>
<p>Setelah itu Save. Maka Disqus hanya akan muncul pada <span style="font-style: italic;">blog post</span> yang Anda inginkan saja.</p>
<p>Anda punya tips lain atau pengalaman mengenai WordPress? Silakan <span style="font-style: italic;">share</span> di <span style="font-style: italic;">comments</span>!</p>
<p><span style="font-style: italic;">Sumber artikel:</span>
<ul>	
<li><a href="http://www.andyghozali.info/disqus-rocks/" rel="nofollow"  target="_blank">Disqus commenting system by Andy Ghozali</a></li>
<p>	
<li><a href="http://wonald.com/how-to-disable-disqus-comments-on-wordpress-pages-64.htm" rel="nofollow"  target="_blank">Wonald.com: How to Disable Disqus Comments on WordPress Pages</a></li>
<p>	
<li><a href="http://mattflies.com/tech/why-and-how-to-use-disqus-with-wordpress/" rel="nofollow"  target="_blank">MattFlies.com: Why and How to Use Disqus with WordPress</a></li>
<p></ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://yarpp.org'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.soluvas.com/disqus-wordpress-plugin-patch-disables-comments-on-pages-or-posts-if-allow-posts-unchecked/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

