<?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"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Search menu in mobile mode</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/feed/</link>
		<description></description>
		<pubDate>Thu, 21 May 2026 03:43:37 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-28587</guid>
					<title><![CDATA[Search menu in mobile mode]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-28587</link>
					<pubDate>Thu, 19 May 2016 11:15:26 +0000</pubDate>
					<dc:creator>charlotte</dc:creator>

					<description>
						<![CDATA[
						<p>Hi</p>
<p>I&#8217;ve added the search in the menu bar for our website (85.236.152.192/~jyb) but when I visualise the website on my mobile phone (with the small dropdown menu) the search feature is not availble&#8230; so it means that I can&#8217;t make any search using any mobile device.<br />
How can I activate this?</p>
<p>thanks</p>
<p>Stéphane</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-28609</guid>
					<title><![CDATA[Reply To: Search menu in mobile mode]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-28609</link>
					<pubDate>Mon, 23 May 2016 15:50:45 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Stéphane, </p>
<p>What did you activate? Yes, you can&#8217;t you need to modify your navigation..</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-32093</guid>
					<title><![CDATA[Reply To: Search menu in mobile mode]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-32093</link>
					<pubDate>Mon, 23 Oct 2017 19:23:51 +0000</pubDate>
					<dc:creator>Yookaroo</dc:creator>

					<description>
						<![CDATA[
						<p>We have come up with the same issue at backdropscanada.ca our store isnt searchable on mobile, do you have a fix or do we need to modify a setting?  A lot of our buyers come through mobile.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-32095</guid>
					<title><![CDATA[Reply To: Search menu in mobile mode]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/search-menu-in-mobile-mode/#post-32095</link>
					<pubDate>Tue, 24 Oct 2017 07:15:55 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Yes, you need to overrride your header.php in your Child theme, then paste this code:</p>
<pre><code>$product_search_hidden_field = &#039;&#039;;					if(ot_get_option(&#039;woocommerce_header_product_search&#039;,&#039;off&#039;)==&#039;on&#039;){
	$product_search_hidden_field = &quot;&lt;input type=&#039;hidden&#039; name=&#039;post_type&#039; id=&#039;post_type&#039; value=&#039;product&#039;/&gt;&quot;;
}
$search_form_html = &#039;&lt;form method=&quot;get&quot; action=&quot;&#039;.esc_url( home_url( &#039;/&#039; ) ).&#039;&quot; role=&quot;search&quot; class=&quot;mobile_search_form&quot;&gt;&lt;input type=&quot;search&quot; name=&quot;s&quot; autocomplete=&quot;off&quot; placeholder=&quot;&#039;.__( &#039;Search...&#039;, &#039;Alea&#039; ).&#039;&quot; /&gt;&#039;.$product_search_hidden_field.&#039;&lt;/form&gt;&#039;;
echo $search_form_html;</code></pre>
<p>after the mobile menu code:</p>
<pre><code>if ( has_nav_menu( &#039;main_navigation&#039; ) ) {
	wp_nav_menu( array(
		&#039;theme_location&#039;=&gt; &#039;main_navigation&#039;,
		&#039;container&#039; 	=&gt; &#039;&#039;,
		&#039;menu_class&#039; 	=&gt; &#039;&#039;, 
		&#039;walker&#039; 		=&gt; new boc_Menu_Walker,
		&#039;fallback_cb&#039;   =&gt; &#039;respMenuFallBack&#039;,
		&#039;items_wrap&#039; =&gt; &#039;&lt;ul&gt;%3$s&lt;/ul&gt;&#039;,
	));
}</code></pre>
<p>Then add this to your Child theme&#8217;s CSS file:</p>
<pre><code>.mobile_search_form {
	margin: 20px 30px;
}
.mobile_search_form input{
	width: 100%;
	background: #303030;
	border: 1px solid #444;
	padding: 8px 10px;
	color: #ddd;
	border-radius: 2px;
}</code></pre>
<p>You should be good to go. You can further style the search field if you want&#8230; <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

