<?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: How to remove &#34;widgets section&#34; and the area above widgets?</title>
		<link>http://www.kriesi.at/support/topic/how-to-remove-widgets-section-and-the-area-above-widgets</link>
		<description>Support Forum - Topic: How to remove &quot;widgets section&quot; and the area above widgets?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 May 2013 05:11:49 +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/how-to-remove-widgets-section-and-the-area-above-widgets" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "How to remove &#34;widgets section&#34; and the area above widgets?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-widgets-section-and-the-area-above-widgets#post-15331</link>
			<pubDate>Mon, 21 Mar 2011 12:35:44 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15331@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Glad that I could help you :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>VoodooPL on "How to remove &#34;widgets section&#34; and the area above widgets?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-widgets-section-and-the-area-above-widgets#post-15326</link>
			<pubDate>Mon, 21 Mar 2011 09:05:51 +0000</pubDate>
			<dc:creator>VoodooPL</dc:creator>
			<guid isPermaLink="false">15326@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Dude, it's awesome, works great, thanks very much for Your help !!!&#60;br /&#62;
Best wishes from Poland :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "How to remove &#34;widgets section&#34; and the area above widgets?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-widgets-section-and-the-area-above-widgets#post-15322</link>
			<pubDate>Mon, 21 Mar 2011 08:46:21 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">15322@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;br /&#62;
sorry for the late reply.&#60;/p&#62;
&#60;p&#62;1) Open up footer.php and remove following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;wrapper footer ie6fix&#38;quot; id=&#38;#39;wrapper_footer_top&#38;#39;&#38;gt;
&#38;lt;div class=&#38;#39;overlay_top ie6fix&#38;#39;&#38;gt;&#38;lt;/div&#38;gt;
	&#38;lt;div class=&#38;#39;center&#38;#39; id=&#38;quot;footer_inside&#38;quot;&#38;gt;

	&#38;lt;?php
			$columns = 1;
			foreach ($k_option[&#38;#39;custom&#38;#39;][&#38;#39;footer&#38;#39;] as $footer_widget) //iterates 3 times creating 3 footer widget areas
			{
				$last = &#38;quot;&#38;quot;;
				if($columns == 4){$last = &#38;quot;last&#38;quot;; }

				echo &#38;#39;&#38;lt;div class=&#38;quot;footerColumn &#38;#39;.$footer_widget.&#38;#39; &#38;#39;.$last.&#38;#39;&#38;quot;&#38;gt;&#38;#39;;
				if (function_exists(&#38;#39;dynamic_sidebar&#38;#39;) &#38;amp;&#38;amp; dynamic_sidebar(&#38;#39;Footer - &#38;#39;.$footer_widget) ) : 

				else : dummy_widget($columns); endif; // dummy widgets defined at the bottom of widgets.php

				echo &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
				$columns++;
			} 

			?&#38;gt;

	&#38;lt;!--end footer_inside--&#38;gt;
	&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2) Open up index.php and remove following code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;main&#38;quot;&#38;gt;

			&#38;lt;div class=&#38;quot;frontpagetabs&#38;quot;&#38;gt;

			&#38;lt;div class=&#38;#39;entry&#38;#39;&#38;gt;
			&#38;lt;?php 

			#query the pags do display on the starting page
			if($k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;mainpage_content_final&#38;#39;] != &#38;quot;&#38;quot;)
			{
				$id_order = explode(&#38;#39;,&#38;#39;, $k_option[&#38;#39;mainpage&#38;#39;][&#38;#39;mainpage_content_final&#38;#39;]);
				$args = array(
				  &#38;#39;post_type&#38;#39; =&#38;gt; &#38;#39;page&#38;#39;,
				  &#38;#39;post__in&#38;#39; =&#38;gt; $id_order
				  );

				$additional_loop = new WP_Query($args);

				#sorts the array so it reflects the order selceted in the backend
				foreach($additional_loop-&#38;gt;posts as $the_post)
				{
					foreach($id_order as $key =&#38;gt; $value)
					{
						if($value == $the_post-&#38;gt;ID)
						{
							$tempArray[$key] = $the_post;
						}
					}
				}
				$additional_loop-&#38;gt;posts = $tempArray;

				#output loop
				$counter = 1;
				$firstContainer = &#38;#39;fpactive_tab_content&#38;#39;;
				$firstTab = &#38;#39;fpactive_tab&#38;#39;;
				while ($additional_loop-&#38;gt;have_posts()) : $additional_loop-&#38;gt;the_post();
				?&#38;gt;

				&#38;lt;h1 class=&#38;#39;fptab &#38;lt;?php echo $firstTab; ?&#38;gt;&#38;#39;&#38;gt;&#38;lt;!--&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt; --&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;!--&#38;lt;/a&#38;gt;--&#38;gt;&#38;lt;/h1&#38;gt;
				&#38;lt;div class=&#38;#39;fptab_content tab&#38;lt;?php echo $counter. &#38;quot; &#38;quot;.$firstContainer; ?&#38;gt;&#38;#39;&#38;gt;
				&#38;lt;?php the_content(&#38;#39;Read more&#38;#39;); edit_post_link(&#38;#39;Edit&#38;#39;, &#38;#39;&#38;#39;, &#38;#39;&#38;#39;);?&#38;gt;
				&#38;lt;/div&#38;gt;

				&#38;lt;?php
				$firstContainer = $firstTab = &#38;quot;&#38;quot;;
				$counter ++;
				endwhile;
			}
			else
			{
				echo &#38;quot;&#38;lt;h1&#38;gt;Welcome and Thanks for installing Avisio!&#38;lt;/h1&#38;gt;&#38;quot;;
				echo &#38;quot;It seems you didnt set up your frontpage by now. You can do that in your wordpress backend at Avisio Options &#38;amp;raquo; &#38;lt;a href=&#38;#39;&#38;quot;.get_option(&#38;#39;siteurl&#38;#39;).&#38;quot;/wp-admin/options.php?page=mainpage.php&#38;#39; title=&#38;#39;&#38;#39;&#38;gt;Mainpage Options&#38;lt;/a&#38;gt;&#38;quot;;
			}

			?&#38;gt;
			&#38;lt;!--end enty --&#38;gt;
			&#38;lt;/div&#38;gt;
			&#38;lt;span class=&#38;quot;hr&#38;quot;&#38;gt;&#38;lt;/span&#38;gt;			

			&#38;lt;/div&#38;gt;

		&#38;lt;!--end main--&#38;gt;
		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>VoodooPL on "How to remove &#34;widgets section&#34; and the area above widgets?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-widgets-section-and-the-area-above-widgets#post-15060</link>
			<pubDate>Thu, 17 Mar 2011 22:36:09 +0000</pubDate>
			<dc:creator>VoodooPL</dc:creator>
			<guid isPermaLink="false">15060@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm working on Avisio theme and need to remove:&#60;br /&#62;
- whole widgets area,&#60;br /&#62;
- and the one located above the widgets.&#60;/p&#62;
&#60;p&#62;To be more precise, I've took a print screen where I marked areas I want to remove.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://img836.imageshack.us/img836/3886/mainpageavisio.jpg&#34; rel=&#34;nofollow&#34;&#62;http://img836.imageshack.us/img836/3886/mainpageavisio.jpg&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Waiting for Your help and advices, thanks in advance,&#60;br /&#62;
Regards,&#60;br /&#62;
VoodooPL
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
