<?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: Drop Down Show Search Input Field</title>
		<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field</link>
		<description>Gravity Support Forums Topic: Drop Down Show Search Input Field</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Apr 2026 19:52:47 +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/drop-down-show-search-input-field" rel="self" type="application/rss+xml" />

		<item>
			<title>David Peralty on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-229914</link>
			<pubDate>Mon, 29 Apr 2013 12:52:29 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">229914@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks as always richard. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-228732</link>
			<pubDate>Sun, 28 Apr 2013 15:04:27 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">228732@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Just to update this topic you can also use the filter gform_chosen_options to disable the enhanced user interface search feature when less than a set number of options are present or altogether.&#60;/p&#62;
&#60;p&#62;You would add the following to your functions.php file&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;gform_pre_render&#38;#39;,&#38;#39;set_chosen_options&#38;#39;);
function set_chosen_options($form){
?&#38;gt;
&#38;lt;script&#38;gt;
	gform.addFilter(&#38;#39;gform_chosen_options&#38;#39;,&#38;#39;set_chosen_options_js&#38;#39;);
	function set_chosen_options_js(options,element){
		// disable search if select has less than 5 options
		options.disable_search_threshold = 5 ;
		// to disable search altogether use options.disable_search = true;
	        return options;
	}
&#38;lt;/script&#38;gt;
&#38;lt;?php
	return $form;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Find out more about gform_chosen_options and an example of how to limit the number of items which may be selected in a multi-select field on the following page of the documentation&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_chosen_options&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_chosen_options&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Richard&#60;br /&#62;
--&#60;br /&#62;
Just another member of the community helping out where I can
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-99099</link>
			<pubDate>Wed, 05 Dec 2012 05:05:30 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">99099@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;good to hear you got it sorted.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ehong33234 on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-99064</link>
			<pubDate>Wed, 05 Dec 2012 03:17:24 +0000</pubDate>
			<dc:creator>ehong33234</dc:creator>
			<guid isPermaLink="false">99064@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;just added the following code to the custom css input field in my woothemes (mystile) dashboard and it did the trick. &#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
.chzn-search { display: none; }&#60;br /&#62;
}
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ehong33234 on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-98877</link>
			<pubDate>Tue, 04 Dec 2012 16:09:57 +0000</pubDate>
			<dc:creator>ehong33234</dc:creator>
			<guid isPermaLink="false">98877@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey Richard, thanks a ton. I'll give that a shot. &#60;/p&#62;
&#60;p&#62;Can I put that directly into the form field CSS properties or should I do it in my custom.css using editor?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Richard Vav on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-98630</link>
			<pubDate>Tue, 04 Dec 2012 04:00:19 +0000</pubDate>
			<dc:creator>Richard Vav</dc:creator>
			<guid isPermaLink="false">98630@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That is normal when you activate the enhanced user interface for the drop down, I am not sure if the chosen plugin gravity forms are using for the enhanced user interface provides a way of disabling the search field.  That said you may try using css to hide it if you really don't want it by adding something like this to your themes style.css&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.chzn-search { display: none; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Edit:&#60;br /&#62;
According to the following topic over on the chosen scripts issue tracker it looks like they added the ability to disable the search field a few months back by passing the parameter &#34;disable_search: true&#34;, but I don't think the chosen scripts included with gravity forms have been updated in a while so until they are updated in a future version of gravity forms I think your only option is to use the css above.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://github.com/harvesthq/chosen/issues/772&#34; rel=&#34;nofollow&#34;&#62;https://github.com/harvesthq/chosen/issues/772&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ehong33234 on "Drop Down Show Search Input Field"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/drop-down-show-search-input-field#post-98609</link>
			<pubDate>Tue, 04 Dec 2012 02:39:08 +0000</pubDate>
			<dc:creator>ehong33234</dc:creator>
			<guid isPermaLink="false">98609@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can't figure out why my GF woo product add-ons drop down options all have the &#34;search&#34; input field as the first option. It should only be the drop down options showing. Any suggestions?&#60;/p&#62;
&#60;p&#62;Screenshot:  &#60;a href=&#34;http://oi45.tinypic.com/6fzdeb.jpg&#34; rel=&#34;nofollow&#34;&#62;http://oi45.tinypic.com/6fzdeb.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
