<?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>WooCommerce: Content Above Store, Below Header &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/feed/</link>
		<description></description>
		<lastBuildDate>Fri, 17 Oct 2025 04:26:13 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38250</guid>
					<title><![CDATA[WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38250</link>
					<pubDate>Mon, 28 Apr 2014 22:13:59 +0000</pubDate>
					<dc:creator>Jameson</dc:creator>

					<description>
						<![CDATA[
						<p>Hi, Support! Really love the theme – it&#8217;s one of the best purchases I&#8217;ve made lately. I&#8217;ve gone back and forward with the stacks with my shop, and I&#8217;ve settled on the Integrity stack for doing the most of what I want with my first store (with some CSS edits, of course). However, I&#8217;ve run into a wall, and I think I&#8217;ve checked just about all of your originally-overwhelming but ultimately-fantastic documentation, plus the forum search.</p>
<p>1. I&#8217;m trying to add content (probably a banner) with a little padding-bottom above the populated content of the shop, including the sidebar. How would I go about doing so?</p>
<p>2. Certain pages (checkout, cart, etc) won&#8217;t need the sidebar. Fiddling with the template doesn&#8217;t do the trick. How do I determine which pages can skip loading it?</p>
<p>I had a few more questions (sidebar -&gt; background color, elements -&gt; background color, elements -&gt; borders, etc), but I&#8217;ve managed to sort out how to fix those by utilizing CSS edits and figuring out how the elements are referenced in the coding.</p>
<p>Thanks a ton!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38417</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38417</link>
					<pubDate>Tue, 29 Apr 2014 06:54:22 +0000</pubDate>
					<dc:creator>Colin M</dc:creator>

					<description>
						<![CDATA[
						<p>Please share your CSS edits for styling the sidebar.  I am trying to do that but can&#8217;t figure out how. 🙁</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38624</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-38624</link>
					<pubDate>Tue, 29 Apr 2014 19:47:31 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there!</p>
<p>Jameson, you could adds something like this to functions.php of a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>.</p>
<pre><code>add_action(&#039;woocommerce_before_main_content&#039;,&#039;custom_shop_before_main_content&#039;);

function custom_shop_before_main_content() { ?&gt;
  &lt;!--your banner here--&gt;
&lt;?php
}</code></pre>
<p>You can change sidebar conditions by overriding the sidebar template in a <a href="http://theme.co/x/member/kb/how-to-setup-child-themes/" title="Child Themes" target="_blank" rel="nofollow">child theme</a>. For example: <strong>x/framework/views/renew/wp-sidebar.php</strong></p>
<p>It will take some coding knowledge, but that&#8217;s the best place to determine whether or not the sidebar should be loaded.<br />
You can code in your conditions and set the <code>$layout</code> variable.</p>
<p>Colin, I&#8217;d recommend checking our <a href="http://theme.co/x/member/kb/css-class-index/" rel="nofollow">CSS Class Index</a>. If you have any specific questions, feel free to open your own thread.</p>
<p>Take care!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-39548</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-39548</link>
					<pubDate>Fri, 02 May 2014 00:16:38 +0000</pubDate>
					<dc:creator>Jameson</dc:creator>

					<description>
						<![CDATA[
						<p>There&#8217;s a huge problem that surfaces when I add that&#8230;the white screen of death.<br />
I tried it a number of times, always performing the following steps:</p>
<p>1. Remove prior crashed child theme via FTP<br />
2. Re-upload child theme<br />
3. Live Preview &gt; Save and Activate<br />
4. Open the site to double-check (although WP-ADMIN is down when crashed anyway)<br />
5. Check Customizer settings<br />
6. Open &#8220;functions.php&#8221; under the child theme<br />
7. Add the text<br />
8. Save<br />
9. Witness crash</p>
<p>I&#8217;ve attempted this with several different things, since I know coding but not PHP (and ran it past some programmer friends), but I cannot figure out for the life of me why it crashes my site every time I try to implement it. I&#8217;ve made sure it&#8217;s gone into the &#8220;functions.php&#8221; page and for that specific child theme every time, and I&#8217;m at a loss.</p>
<p>Halp!</p>
<p><strong>EDIT:</strong> Ran the entire &#8220;functions.php&#8221; (which includes no changes besides your suggested one) through an online PHP analysis, and it checks out. So I&#8217;m cruising through Shrug City right now. I&#8217;ll leave it be and continue putting together the banner and the resources it was going to link to, and wait to here what could fix it.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-39817</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-39817</link>
					<pubDate>Fri, 02 May 2014 17:30:38 +0000</pubDate>
					<dc:creator>Alexander</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jameson,</p>
<p>A white screen usually means there is a fatal PHP error. Can you please enable <a href="https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG" rel="nofollow">WP_DEBUG</a> mode? You can do this by opening <code>wp-config.php</code> and adding <code>define( &#039;WP_DEBUG&#039; , true );</code> just above <code>/* That&#039;s all, stop editing! Happy blogging. */</code></p>
<p>For example:<br />
<img decoding="async" src="https://i.cloudup.com/JBfX-CMmS2.png" alt="" /></p>
<p>When you revisit the page with the white screen, you should have some error output. Let us know what you find out.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40180</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40180</link>
					<pubDate>Sat, 03 May 2014 21:11:07 +0000</pubDate>
					<dc:creator>Jameson</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Support,</p>
<p><strong>Fatal error: Cannot redeclare custom_shop_before_main_content() (previously declared in /home2/theramp3/public_html/thefairnecessities/wp-content/themes/x-child-integrity-light/functions.php:13) in /home2/theramp3/public_html/thefairnecessities/wp-content/themes/x/functions.php on line 112</strong></p>
<p>This is the output. Since it&#8217;s very specific, and I understand what it&#8217;s telling me, I&#8217;ll look into this and see if I can fix it myself.</p>
<p>EDIT: <strong>Original problem fixed,</strong> but. Apparently, at some point I accidentally dropped the code into the X theme proper, so that&#8217;s gone and I was able to easily sort that out. <strong>However,</strong> nothing I put into the designated area in the code (images, text, what have you) will populate on the pages. Do I need to wrap it in some kind of shell for the PHP to recognize it, or am I doing something wrong?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40262</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40262</link>
					<pubDate>Sun, 04 May 2014 02:36:24 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jameson,</p>
<p>Sorry, but I&#8217;m not sure what you meant. :/ Could you provide a URL address? Or maybe screenshot too.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40400</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40400</link>
					<pubDate>Sun, 04 May 2014 18:36:45 +0000</pubDate>
					<dc:creator>Jameson</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40505</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40505</link>
					<pubDate>Mon, 05 May 2014 00:51:11 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Jameson,</p>
<p>What fixes did you add? Right now I can&#8217;t tell what is wrong.</p>
<p>If you&#8217;re having function name conflict, you could just rename the function you added at child theme&#8217;s functions.php</p>
<p>Example :</p>
<pre><code>add_action(&#039;woocommerce_before_main_content&#039;,&#039;my_renamed_function&#039;);

function my_renamed_function() { ?&gt;
  &lt;!--your banner here--&gt;
&lt;?php
}
</code></pre>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40955</guid>
					<title><![CDATA[Reply To: WooCommerce: Content Above Store, Below Header]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-content-above-store-below-header/#post-40955</link>
					<pubDate>Tue, 06 May 2014 03:08:26 +0000</pubDate>
					<dc:creator>Jameson</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Support,</p>
<p>The only fix that I applied was to remove the duplicate code on the original X theme. This is all that I have in regards to the proposed fix to allow me to populate content above the automatically-generated content of the store and sidebar.</p>
<p>Here&#8217;s the screenshot I forgot to include.</p>
<p><img decoding="async" src="http://www.thefairnecessities.com/wp-content/uploads/2014/05/wordpress_error-1024x417.png" alt="Screenshot of functions.php" /></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

