<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>Support Forum - Topic: Add Text, or Widget, In Place of Search in Header</title>
		<link>http://www.kriesi.at/support/topic/add-text-or-widget-in-place-of-search-in-header</link>
		<description>Support Forum - Topic: Add Text, or Widget, In Place of Search in Header</description>
		<language>en-US</language>
		<pubDate>Tue, 21 May 2013 09:59:27 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/add-text-or-widget-in-place-of-search-in-header" rel="self" type="application/rss+xml" />

		<item>
			<title>Ismael on "Add Text, or Widget, In Place of Search in Header"</title>
			<link>http://www.kriesi.at/support/topic/add-text-or-widget-in-place-of-search-in-header#post-93653</link>
			<pubDate>Mon, 28 Jan 2013 01:14:54 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">93653@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm not sure if you are editing the correct lines so please check if you find these code on line 162-177&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;header_meta&#38;#39;&#38;gt;&#38;quot;;

							/*
							* Display the search form
							*/

							if(!avia_woocommerce_enabled() &#124;&#124; avia_get_option(&#38;#39;header_search&#38;#39;) != &#38;#39;product&#38;#39;)
							{
								get_search_form();
							}
							else
							{
								get_product_search_form();
							}

							echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If that is the case replace it with this code.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;header_meta&#38;#39;&#38;gt;&#38;quot;;

echo &#38;quot;YOUR TEXT HERE&#38;quot;;

echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Creating a widget will be a bit complicated. :)&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sundialstudios on "Add Text, or Widget, In Place of Search in Header"</title>
			<link>http://www.kriesi.at/support/topic/add-text-or-widget-in-place-of-search-in-header#post-93616</link>
			<pubDate>Sun, 27 Jan 2013 19:18:50 +0000</pubDate>
			<dc:creator>sundialstudios</dc:creator>
			<guid isPermaLink="false">93616@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I get the following error message when making that change: Parse error: syntax error, unexpected T_ECHO in /home/holton59/public_html/wp-content/themes/replete/header.php on line 133&#60;/p&#62;
&#60;p&#62;How would I add a widget positon here, or is that a major undertaking?&#60;/p&#62;
&#60;p&#62;Thanks!!&#60;br /&#62;
John
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Add Text, or Widget, In Place of Search in Header"</title>
			<link>http://www.kriesi.at/support/topic/add-text-or-widget-in-place-of-search-in-header#post-93321</link>
			<pubDate>Thu, 24 Jan 2013 22:40:22 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">93321@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Open header.php and find this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;header_meta&#38;#39;&#38;gt;&#38;quot;;

							/*
							* Display the search form
							*/

							if(!avia_woocommerce_enabled() &#124;&#124; avia_get_option(&#38;#39;header_search&#38;#39;) != &#38;#39;product&#38;#39;)
							{
								get_search_form();
							}
							else
							{
								get_product_search_form();
							}

							echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can replace it with something like this &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;&#38;lt;div class=&#38;#39;header_meta&#38;#39;&#38;gt;&#38;quot;;

YOUR TEXT HERE 

echo &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sundialstudios on "Add Text, or Widget, In Place of Search in Header"</title>
			<link>http://www.kriesi.at/support/topic/add-text-or-widget-in-place-of-search-in-header#post-93227</link>
			<pubDate>Thu, 24 Jan 2013 13:53:33 +0000</pubDate>
			<dc:creator>sundialstudios</dc:creator>
			<guid isPermaLink="false">93227@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi - how would I replace the search box in the header with either some text or, ideally, a text-widget?  Is that possible?&#60;/p&#62;
&#60;p&#62;Thanks John
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
