<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Nice Search</title>
	<atom:link href="http://txfx.net/wordpress-plugins/nice-search/feed/" rel="self" type="application/rss+xml" />
	<link>http://txfx.net</link>
	<description>Mark Jaquith&#039;s blog about capitalism, freedom, WordPress, the web, and personal topics</description>
	<lastBuildDate>Wed, 02 May 2012 07:17:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta4-20838</generator>
	<item>
		<title>By: WordPress Arena: A Blog for WordPress Developers, Designers and Blogger</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-756242</link>
		<dc:creator>WordPress Arena: A Blog for WordPress Developers, Designers and Blogger</dc:creator>
		<pubDate>Thu, 22 Sep 2011 00:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-756242</guid>
		<description>[...] Nice Search [...]</description>
		<content:encoded><![CDATA[<p>[...] Nice Search [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omungke</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-755777</link>
		<dc:creator>Omungke</dc:creator>
		<pubDate>Mon, 11 Jul 2011 13:38:30 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-755777</guid>
		<description>For Mark, Thanks for this great plugin !

@ joice: to add .html at the end of permalink just see on my article: http://omungke.com/tutorial/174-oprek-url-plugin-nice-search.html

There also include how to change + to -</description>
		<content:encoded><![CDATA[<p>For Mark, Thanks for this great plugin !</p>
<p>@ joice: to add .html at the end of permalink just see on my article: <a href="http://omungke.com/tutorial/174-oprek-url-plugin-nice-search.html" rel="nofollow">http://omungke.com/tutorial/174-oprek-url-plugin-nice-search.html</a></p>
<p>There also include how to change + to -</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wanderson (Brazil)</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-755423</link>
		<dc:creator>Wanderson (Brazil)</dc:creator>
		<pubDate>Wed, 27 Apr 2011 23:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-755423</guid>
		<description>Hello Mark.
I downloaded your plugin and it works wonders. The problem is that we use in Brazil &#039;accents&#039; to most words (eg &#039;Trovão&#039; or &#039;Thunder&#039;). In the case of the word &#039;trovão&#039; the character &quot;ã&quot; does not appear in the result.
How to solve this problem with words that use accents?

*** Sorry, I do not speak English and used Google translator to translate this text!

I&#039;m awaiting your answer ...

Thanks!</description>
		<content:encoded><![CDATA[<p>Hello Mark.<br />
I downloaded your plugin and it works wonders. The problem is that we use in Brazil &#8216;accents&#8217; to most words (eg &#8216;Trovão&#8217; or &#8216;Thunder&#8217;). In the case of the word &#8216;trovão&#8217; the character &#8220;ã&#8221; does not appear in the result.<br />
How to solve this problem with words that use accents?</p>
<p>*** Sorry, I do not speak English and used Google translator to translate this text!</p>
<p>I&#8217;m awaiting your answer &#8230;</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter J.</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-755091</link>
		<dc:creator>Peter J.</dc:creator>
		<pubDate>Sat, 26 Feb 2011 21:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-755091</guid>
		<description>I&#039;ve found it useful to also include the * and &quot; characters in the characters that are replaced; here&#039;s a patch:

&lt;pre&gt;&lt;code&gt;@@ -10,7 +10,10 @@
 
 function cws_nice_search_redirect() {
 	if ( is_search() &amp;&amp; strpos( $_SERVER[&#039;REQUEST_URI&#039;], &#039;/wp-admin/&#039; ) === 
false &amp;&amp; strpos( $_SERVER[&#039;REQUEST_URI&#039;], &#039;/search/&#039; ) === false ) {
-		wp_redirect( home_url( &#039;/search/&#039; . str_replace( array( &#039; &#039;, &#039;%2
0&#039; ),  array( &#039;+&#039;, &#039;+&#039; ), get_query_var( &#039;s&#039; ) ) ) );
+		$inputs = array( &#039; &#039;, &#039;%20&#039;, &#039;*&#039;, &#039;&quot;&#039; );
+		$outputs = array( &#039;+&#039;, &#039;+&#039;, &#039;%2A&#039;, &#039;%22&#039; );
+
+		wp_redirect( home_url( &#039;/search/&#039; . str_replace( $inputs, $outputs, get_query_var( &#039;s&#039; ) ) ) );
 		exit();
 	}
 }&lt;/code&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve found it useful to also include the * and &#8221; characters in the characters that are replaced; here&#8217;s a patch:</p>
<pre><code>@@ -10,7 +10,10 @@
 
 function cws_nice_search_redirect() {
 	if ( is_search() &amp;&amp; strpos( $_SERVER['REQUEST_URI'], '/wp-admin/' ) === 
false &amp;&amp; strpos( $_SERVER['REQUEST_URI'], '/search/' ) === false ) {
-		wp_redirect( home_url( '/search/' . str_replace( array( ' ', '%2
0' ),  array( '+', '+' ), get_query_var( 's' ) ) ) );
+		$inputs = array( ' ', '%20', '*', '"' );
+		$outputs = array( '+', '+', '%2A', '%22' );
+
+		wp_redirect( home_url( '/search/' . str_replace( $inputs, $outputs, get_query_var( 's' ) ) ) );
 		exit();
 	}
 }</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joyce</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754657</link>
		<dc:creator>Joyce</dc:creator>
		<pubDate>Tue, 04 Jan 2011 23:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754657</guid>
		<description>Hi,

I wonder how can I add .html at the end of the search permalink? Sorry for this newbie kinda question.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I wonder how can I add .html at the end of the search permalink? Sorry for this newbie kinda question.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas Lejon</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754637</link>
		<dc:creator>Jonas Lejon</dc:creator>
		<pubDate>Mon, 03 Jan 2011 10:14:38 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754637</guid>
		<description>Please update with this patch:

wp_redirect(get_bloginfo(‘home’) . ‘/search/’ . str_replace(‘ ‘, ‘+’, str_replace(‘%20′, ‘+’, urlencode(get_query_var(‘s’)))));</description>
		<content:encoded><![CDATA[<p>Please update with this patch:</p>
<p>wp_redirect(get_bloginfo(‘home’) . ‘/search/’ . str_replace(‘ ‘, ‘+’, str_replace(‘%20′, ‘+’, urlencode(get_query_var(‘s’)))));</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754621</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 02 Jan 2011 21:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754621</guid>
		<description>No, there&#039;s no danger there. It&#039;s just checking the values, not outputting.</description>
		<content:encoded><![CDATA[<p>No, there&#8217;s no danger there. It&#8217;s just checking the values, not outputting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BandonRandon</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754612</link>
		<dc:creator>BandonRandon</dc:creator>
		<pubDate>Sat, 01 Jan 2011 22:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754612</guid>
		<description>Sorry for the confususion. I wasn&#039;t talking about in my search form. That seems to be properly formated. I was talking about in the Nice Search code `if ( is_search() &amp;&amp; strpos( $_SERVER[&#039;REQUEST_URI&#039;], &#039;/wp-admin/&#039; ) === false &amp;&amp; strpos( $_SERVER[&#039;REQUEST_URI&#039;], &#039;/search/&#039; ) === false ) {`</description>
		<content:encoded><![CDATA[<p>Sorry for the confususion. I wasn&#8217;t talking about in my search form. That seems to be properly formated. I was talking about in the Nice Search code `if ( is_search() &amp;&amp; strpos( $_SERVER['REQUEST_URI'], &#8216;/wp-admin/&#8217; ) === false &amp;&amp; strpos( $_SERVER['REQUEST_URI'], &#8216;/search/&#8217; ) === false ) {`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754611</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sat, 01 Jan 2011 21:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754611</guid>
		<description>Brandon — That&#039;s a bug with your theme! The action of the search form shouldn&#039;t be &lt;code&gt;$_SERVER[&#039;REQUEST_URI&#039;]&lt;/code&gt; ! Instead, use the built in API function in your theme: &lt;code&gt;get_search_form()&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Brandon — That&#8217;s a bug with your theme! The action of the search form shouldn&#8217;t be <code>$_SERVER['REQUEST_URI']</code> ! Instead, use the built in API function in your theme: <code>get_search_form()</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BandonRandon</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754604</link>
		<dc:creator>BandonRandon</dc:creator>
		<pubDate>Fri, 31 Dec 2010 23:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754604</guid>
		<description>Another note should we also wrap &quot;$_SERVER[&#039;REQUEST_URI&#039;]&quot; in esc_url for security?</description>
		<content:encoded><![CDATA[<p>Another note should we also wrap &#8220;$_SERVER['REQUEST_URI']&#8221; in esc_url for security?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BandonRandon</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754603</link>
		<dc:creator>BandonRandon</dc:creator>
		<pubDate>Fri, 31 Dec 2010 23:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754603</guid>
		<description>Hey Mark, 

I don&#039;t know if this plugin is still maintained or if since 1.5 there is an easier way to get search results. However, If it&#039;s still maintained I belive I found a bug. If I do a search with the plugin active I get this nice clean search like. http://example.org/search/my_search and all is good. Now if I use the sidebar search a second time I&#039;m taken to http://example.org/search/my_search/?s=second_search. The search works for second search but I&#039;m not sure if there is an easy way to keep clean search active the whole time. 

Just something that I thought I&#039;d point out.</description>
		<content:encoded><![CDATA[<p>Hey Mark, </p>
<p>I don&#8217;t know if this plugin is still maintained or if since 1.5 there is an easier way to get search results. However, If it&#8217;s still maintained I belive I found a bug. If I do a search with the plugin active I get this nice clean search like. <a href="http://example.org/search/my_search" rel="nofollow">http://example.org/search/my_search</a> and all is good. Now if I use the sidebar search a second time I&#8217;m taken to <a href="http://example.org/search/my_search/?s=second_search" rel="nofollow">http://example.org/search/my_search/?s=second_search</a>. The search works for second search but I&#8217;m not sure if there is an easy way to keep clean search active the whole time. </p>
<p>Just something that I thought I&#8217;d point out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Heap</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754056</link>
		<dc:creator>Jesse Heap</dc:creator>
		<pubDate>Sat, 06 Nov 2010 14:41:07 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754056</guid>
		<description>Pande - You can edit the following line and add 301 to use a 301 direct:

wp_redirect(get_bloginfo(&#039;home&#039;) . &#039;/search/&#039; . str_replace(&#039; &#039;, &#039;+&#039;, str_replace(&#039;%20&#039;, &#039;+&#039;, get_query_var(&#039;s&#039;))), 301);</description>
		<content:encoded><![CDATA[<p>Pande &#8211; You can edit the following line and add 301 to use a 301 direct:</p>
<p>wp_redirect(get_bloginfo(&#8216;home&#8217;) . &#8216;/search/&#8217; . str_replace(&#8216; &#8216;, &#8216;+&#8217;, str_replace(&#8216;%20&#8242;, &#8216;+&#8217;, get_query_var(&#8216;s&#8217;))), 301);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress &#124; Not so Nice Search &#124; Björn Sennbrink</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-754004</link>
		<dc:creator>Wordpress &#124; Not so Nice Search &#124; Björn Sennbrink</dc:creator>
		<pubDate>Mon, 01 Nov 2010 23:31:06 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-754004</guid>
		<description>[...] Nice Search is one of many plugins for WordPress that enhance the search functionality on your self hosted WordPress blog/website. This is a really simple plugin that redirects your WordPress searches (?s=search-term) to the pretty-looking URI version: /search/search-term, and also converts spaces (%20) to plus symbols. [...]</description>
		<content:encoded><![CDATA[<p>[...] Nice Search is one of many plugins for WordPress that enhance the search functionality on your self hosted WordPress blog/website. This is a really simple plugin that redirects your WordPress searches (?s=search-term) to the pretty-looking URI version: /search/search-term, and also converts spaces (%20) to plus symbols. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress &#124; 14 WP-plugins du måste ha &#124; WordPress-konsult Björn Sennbrink</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-753536</link>
		<dc:creator>Wordpress &#124; 14 WP-plugins du måste ha &#124; WordPress-konsult Björn Sennbrink</dc:creator>
		<pubDate>Fri, 03 Sep 2010 08:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-753536</guid>
		<description>[...] Nice Search Skapar en vidarebefordring av &#8221;?s=query&#8221;-sökningar till &#8221;/search/query&#8221;. [...]</description>
		<content:encoded><![CDATA[<p>[...] Nice Search Skapar en vidarebefordring av &#8221;?s=query&#8221;-sökningar till &#8221;/search/query&#8221;. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Syba</title>
		<link>http://txfx.net/wordpress-plugins/nice-search/comment-page-2/#comment-753425</link>
		<dc:creator>Syba</dc:creator>
		<pubDate>Fri, 13 Aug 2010 01:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/nice-search/#comment-753425</guid>
		<description>nice plugins is work, thanks...</description>
		<content:encoded><![CDATA[<p>nice plugins is work, thanks&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

