<?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>Add Widget to Menu? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/add-widget-to-menu/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/add-widget-to-menu/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 21:45:03 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200165</guid>
					<title><![CDATA[Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200165</link>
					<pubDate>Fri, 06 Feb 2015 02:37:51 +0000</pubDate>
					<dc:creator>intellibeam</dc:creator>

					<description>
						<![CDATA[
						<p>I have a Google Translate Widget I would like to appear on our static left menu bar. I&#8217;m using Icon full width with 1 page navigation that I changed the function.php file from a prior thread: <a href="https://theme.co/x/member/forums/topic/icon-demo-with-1-page-navigation/" rel="nofollow">https://theme.co/x/member/forums/topic/icon-demo-with-1-page-navigation/</a></p>
<p>I can&#8217;t seem to add a widget to that left menu now, I&#8217;m guessing since that menu bar isn&#8217;t supposed to be there. How could I add a widget that appears above the &#8220;Home&#8221; button? The code for the widget is [prisna-google-website-translator] My site is lexingtonhousing.org</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200491</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200491</link>
					<pubDate>Fri, 06 Feb 2015 14:35:53 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Thanks for writing in!</p>
<p>You can add the code below in your child theme&#8217;s functins.php file.</p>
<pre><code>
add_filter(&#039;wp_nav_menu_items&#039;,&#039;add_search_box_to_menu&#039;, 10, 2);
function add_search_box_to_menu( $items, $args ) {
    if( $args-&gt;theme_location == &#039;primary&#039; )
        
    return &#039;Google widget code&#039;.$items;
}
</code></pre>
<p>Change <strong>Google widget code</strong> with your code.</p>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200557</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200557</link>
					<pubDate>Fri, 06 Feb 2015 16:44:55 +0000</pubDate>
					<dc:creator>intellibeam</dc:creator>

					<description>
						<![CDATA[
						<p>I tried that but all I get is [prisna-google-website-translator] written on the page not the widget.</p>
<p>I tried a few ways:</p>
<p>return &#8216;[prisna-google-website-translator]&#8217;.$items;<br />
return &#8216;prisna-google-website-translator&#8217;.$items;<br />
return &#8216;Prisna GWT&#8217;.$items;</p>
<p>All I get is writing with no widget. Here&#8217;s the specs on the widget:</p>
<p>Usage<br />
&#8211; Go to the Appereance &gt; Widgets panel, search for the following widget</p>
<p>Prisna GWT</p>
<p>&#8211; Copy and paste the following code into pages, posts, etc&#8230;</p>
<p>[prisna-google-website-translator]</p>
<p>&#8211; Copy and paste the following code into any PHP file</p>
<p>&lt;?php echo do_shortcode(&#8216;[prisna-google-website-translator]&#8217;); ?&gt;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200883</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-200883</link>
					<pubDate>Sat, 07 Feb 2015 02:48:24 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Could you try this?</p>
<p><code>return do_shortcode(&#039;[prisna-google-website-translator]&#039;).$items;</code></p>
<p>Please also check if the plugin or feature related to that shortcode is active.</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201147</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201147</link>
					<pubDate>Sat, 07 Feb 2015 16:14:45 +0000</pubDate>
					<dc:creator>intellibeam</dc:creator>

					<description>
						<![CDATA[
						<p>That worked!</p>
<p>Is there a way to add padding to the left of the widget area? I need it moved off the left edge a little bit.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201454</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201454</link>
					<pubDate>Sun, 08 Feb 2015 07:16:33 +0000</pubDate>
					<dc:creator>Christian</dc:creator>

					<description>
						<![CDATA[
						<p>Hey there,</p>
<p>Please give us the URL of the page so we could give you a tailored solution.</p>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201603</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201603</link>
					<pubDate>Sun, 08 Feb 2015 14:11:58 +0000</pubDate>
					<dc:creator>intellibeam</dc:creator>

					<description>
						<![CDATA[
						<p>Lexingtonhousing.org</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201796</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201796</link>
					<pubDate>Sun, 08 Feb 2015 21:58:19 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Add this to your Customizer&#8217;s custom CSS:</p>
<pre><code>.prisna-gwt-align-left{
width:65%;
}</code></pre>
<p>hope it helps<br />
thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201839</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-201839</link>
					<pubDate>Sun, 08 Feb 2015 23:37:33 +0000</pubDate>
					<dc:creator>intellibeam</dc:creator>

					<description>
						<![CDATA[
						<p>I added it but it still looks the exact same.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-202126</guid>
					<title><![CDATA[Reply To: Add Widget to Menu?]]></title>
					<link>https://theme.co/archive/forums/topic/add-widget-to-menu/#post-202126</link>
					<pubDate>Mon, 09 Feb 2015 10:56:41 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Please try this instead :</p>
<pre><code>.prisna-gwt-align-left {
width: 65%;
margin: 0 auto;
display: block;
}</code></pre>
<p>Thanks.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

