<?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>How to Remove Footer Widgets But Keep Bottom Footer? &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/feed/</link>
		<description></description>
		<lastBuildDate>Thu, 16 Oct 2025 21:34:29 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224030</guid>
					<title><![CDATA[How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224030</link>
					<pubDate>Tue, 10 Mar 2015 07:32:32 +0000</pubDate>
					<dc:creator>mvives</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, I&#8217;m using the Integrity 1 stack. How do I remove the Footer Widgets from select pages while still keeping the bottom footer that contains the footer navigation, copyright, etc.&#8211;the area in the red box in this image: <a href="http://screencast.com/t/R9s9BA6S" rel="nofollow">http://screencast.com/t/R9s9BA6S</a></p>
<p>When I chose a &#8220;No Footer&#8221; template option, it gets rid of the Footer Widgets AND the bottom footer. Is there a way to just get rid of the Footer Widgets on select pages?</p>
<p>Please let me know. Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224065</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224065</link>
					<pubDate>Tue, 10 Mar 2015 08:32:27 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>What you are trying to accomplish requires a template customization, we would like to suggest that you use a <a href="https://theme.co/x/member/kb/how-to-setup-child-themes/" rel="nofollow">child theme</a>. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in  <a href="http://theme.co/x/member/kb/customization-best-practices/" rel="nofollow">Customization Best Practices</a>.</p>
<p>To get rid of that, please add the following code in your functions.php</p>
<pre><code>// Widget Area Active
// =============================================================================

if ( ! function_exists( &#039;x_footer_widget_areas_active&#039; ) ) :
  function x_footer_widget_areas_active() {

    $n = x_footer_widget_areas_count();

    $i = 0; while ( $i &lt; $n ) : $i++;

      if ( is_active_sidebar( &#039;footer-&#039; . $i ) ) {
        return true;
      }

    endwhile;

    return false;

  }
endif;
// End Widget Area Active
// =============================================================================</code></pre>
<p>And we also need to tweak the VIEWS/GLOBAL/_FOOTER-WIDGET-AREAS.PHP, please create a new file, insert the code below and save filename as _footer-widget-areas.php and please upload the file in your child themes folder, /wp-content/themes/x-child/framework/views/global/ in your server.</p>
<pre><code>&lt;?php

// =============================================================================
// VIEWS/GLOBAL/_FOOTER-WIDGET-AREAS.PHP
// -----------------------------------------------------------------------------
// Outputs the widget areas for the footer.
// =============================================================================

$n = x_footer_widget_areas_count();

?&gt;

&lt;?php if ( $n != 0 &amp;&amp; x_footer_widget_areas_active() ) : ?&gt;

  &lt;footer class=&quot;x-colophon top&quot; role=&quot;contentinfo&quot;&gt;
    &lt;div class=&quot;x-container max width&quot;&gt;

      &lt;?php

      $i = 0; while ( $i &lt; $n ) : $i++;

        $last = ( $i == $n ) ? &#039; last&#039; : &#039;&#039;;

        echo &#039;&lt;div class=&quot;x-column x-md x-1-&#039; . $n . $last . &#039;&quot;&gt;&#039;;
          dynamic_sidebar( &#039;footer-&#039; . $i );
        echo &#039;&lt;/div&gt;&#039;;

      endwhile;

      ?&gt;

    &lt;/div&gt;
  &lt;/footer&gt;

&lt;?php endif; ?&gt;</code></pre>
<p>If you have properly placed the code, it should work and disables the gray bar when there is no footer widget areas active.<br />
Feel free to let us know if this has work for you.</p>
<p>Thank you</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224505</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224505</link>
					<pubDate>Tue, 10 Mar 2015 18:53:14 +0000</pubDate>
					<dc:creator>mvives</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, thanks for the reply. I appreciate the help!</p>
<p>I&#8217;m not quite sure if what you recommended is exactly the solution for what I&#8217;m trying to do. I implemented your recommendations, but nothing has changed.</p>
<p>I like how everything appears in this image: <a href="http://screencast.com/t/R9s9BA6S" rel="nofollow">http://screencast.com/t/R9s9BA6S</a></p>
<p>However, on some pages, I would only like the bottom footer (the area within the red box) to show, and not the Widget Footer Area. Again, only for select pages&#8230;not sitewide.</p>
<p>Thanks for the help.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224598</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224598</link>
					<pubDate>Tue, 10 Mar 2015 20:52:49 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there, </p>
<p>Thank you for the explanation. The easiest way to achieve that is by using CSS. You can get the Page/ Post IDs as mentioned here (<a href="https://theme.co/x/member/kb/how-to-locate-post-ids/" rel="nofollow">https://theme.co/x/member/kb/how-to-locate-post-ids/</a>) and use it along with CSS rules. </p>
<p>You can place your CSS rules into your Customizer, Custom &gt; CSS section using the menu Appearance -&gt; Customize.</p>
<p>Follow the example below. </p>
<pre><code>
.page-id-3034 .x-colophon.top {
    display: none;
}

.single-post .x-colophon.top {
    display: none;
}

.blog .x-colophon.top {
    display: none;
}

.postid-5616 .x-colophon.top {
    display: none;
}
</code></pre>
<p>Hope that helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224826</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224826</link>
					<pubDate>Wed, 11 Mar 2015 06:51:06 +0000</pubDate>
					<dc:creator>mvives</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks, very helpful!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224849</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-224849</link>
					<pubDate>Wed, 11 Mar 2015 07:37:08 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>We&#8217;re happy to help! 😉</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-234037</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-234037</link>
					<pubDate>Tue, 24 Mar 2015 13:21:03 +0000</pubDate>
					<dc:creator>purifiedlifestyle</dc:creator>

					<description>
						<![CDATA[
						<p>I too needed this information and it helped out very much! Thanks.<br />
 I have another related question.<br />
Is there a way I can do the same thing, get rid of footer widget areas for woo commerce products, and product categories or just the whole shop in general?</p>
<p>Thanks,<br />
Amanda</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-234249</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-234249</link>
					<pubDate>Tue, 24 Mar 2015 18:43:47 +0000</pubDate>
					<dc:creator>Darshana</dc:creator>

					<description>
						<![CDATA[
						<p><a href="https://theme.co/archive/users/purifiedlifestyle/" class="bbp-user-mention bbp-user-id-29592"> @purifiedlifestyle</a></p>
<p>Could you please provide us with a URL to your shop page? so that we can take a closer look and assist you with a tailored solution. </p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-238322</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-238322</link>
					<pubDate>Mon, 30 Mar 2015 17:58:12 +0000</pubDate>
					<dc:creator>purifiedlifestyle</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-238473</guid>
					<title><![CDATA[Reply To: How to Remove Footer Widgets But Keep Bottom Footer?]]></title>
					<link>https://theme.co/archive/forums/topic/how-to-remove-footer-widgets-but-keep-bottom-footer/#post-238473</link>
					<pubDate>Mon, 30 Mar 2015 21:12:22 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Amanda,</p>
<p>Please try to add this under <strong>Custom &gt; CSS</strong> in the <strong>Customizer</strong>.</p>
<pre><code>.woocommerce-page .x-colophon.top {
	display: none;
}</code></pre>
<p>Hope it helps, Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

