<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<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">
	<channel>
		<title>Gravity Support Forums Topic: Use Gravity Forms to search for tags</title>
		<link>https://legacy.forums.gravityhelp.com/topic/use-gravity-forms-to-search-for-tags</link>
		<description>Gravity Support Forums Topic: Use Gravity Forms to search for tags</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 11:09:10 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/use-gravity-forms-to-search-for-tags" rel="self" type="application/rss+xml" />

		<item>
			<title>Zamir on "Use Gravity Forms to search for tags"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-gravity-forms-to-search-for-tags#post-320071</link>
			<pubDate>Thu, 13 Jun 2013 03:39:32 +0000</pubDate>
			<dc:creator>Zamir</dc:creator>
			<guid isPermaLink="false">320071@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I am using GF &#34;Post Fields&#34; to create a form where users will create the WordPress posts (automatically published if user is logged in).&#60;/p&#62;
&#60;p&#62;Now, if I am to use GF for search as well, I understand I will use the &#34;Pass Field Data Via Query String&#34; option, and user will be re-directed to a page (or post), and the address of new page (or post) will contain all the tags the selected in the GF &#34;search&#34; form. Then I will manipulate the URL and form my WordPress search query and display the posts (search results for searched tags).&#60;/p&#62;
&#60;p&#62;I hope I understood correctly.&#60;/p&#62;
&#60;p&#62;My question: For search form, I'll again use the &#34;Post Fields&#34; with drop-down lists that will be identical to the ones I used to generate the content. Now, when I am using them for search, and user presses the &#34;Search&#34; button, and will be redirected to a page (or post), will it create another WordPress post as well? What I mean is, when I am trying to use GF as a &#34;search&#34; form, then I don't want to create new WP posts on result of the search queries.&#60;/p&#62;
&#60;p&#62;Do you understand what I am asking?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Use Gravity Forms to search for tags"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-gravity-forms-to-search-for-tags#post-104478</link>
			<pubDate>Wed, 19 Dec 2012 11:00:25 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">104478@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It can be done using the PHP function str_replace.  Take a look at this code example:&#60;br /&#62;
&#60;a href=&#34;http://pastie.org/5111190&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/5111190&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Instead of stripping out the dollar sign, you could remove the question mark, and also convert spaces to dashes.    All your work will be done on line 8 of that code example.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andy on "Use Gravity Forms to search for tags"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-gravity-forms-to-search-for-tags#post-103047</link>
			<pubDate>Sat, 15 Dec 2012 21:14:50 +0000</pubDate>
			<dc:creator>Andy</dc:creator>
			<guid isPermaLink="false">103047@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;ok, I have made some significant progress by using the redirect option in gravity forms and Pass Field Data Via Query String.&#60;/p&#62;
&#60;p&#62;The problem now is to convert the resulting URL when the user presses submit from:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.mysite.com/?tag/New+Build+2+Bedrooms&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/?tag/New+Build+2+Bedrooms&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;to&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.mysite.com/tag/New-Build+2-Bedrooms&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/tag/New-Build+2-Bedrooms&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;for the search to function properly. i.e.&#60;/p&#62;
&#60;p&#62;1. Remove the question mark (?) added by Pass Field Data Via Query String&#60;br /&#62;
2. Convert spaces between words to dash -&#60;/p&#62;
&#60;p&#62;could be done using regular expressions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Andy on "Use Gravity Forms to search for tags"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/use-gravity-forms-to-search-for-tags#post-103037</link>
			<pubDate>Sat, 15 Dec 2012 18:37:38 +0000</pubDate>
			<dc:creator>Andy</dc:creator>
			<guid isPermaLink="false">103037@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have come across some topics about using Gravity Forms as an advanced search widget but didn't see any completed answers. &#60;/p&#62;
&#60;p&#62;What I would like must be do-able with Gravity Forms. Basically I want to have 3-4 dropdown menus which contain my defined tags and when the user presses the search button, then the form should redirect to searching for the selected tags. &#60;/p&#62;
&#60;p&#62;any tips on how to achieve this would be much appreciated.&#60;/p&#62;
&#60;p&#62;Andy
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
