<?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>Single Product &quot;Add To Cart&quot; Button Placement &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 19 Oct 2025 10:46:47 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351269</guid>
					<title><![CDATA[Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351269</link>
					<pubDate>Wed, 05 Aug 2015 21:55:25 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Support, </p>
<p>On my single product page I&#8217;d like the &#8220;Add to Cart&#8221; button and Quantity selection to live directly below the price, rather than below the details. </p>
<p>I believe the thread below is asking the same question but the css suggested had no affect. Any suggestions?</p>
<p><a href="https://community.theme.co//forums/topic/woocommerce-add-to-cart-button-positioning/" rel="nofollow">https://community.theme.co//forums/topic/woocommerce-add-to-cart-button-positioning/</a></p>
<p>Login info to follow. </p>
<p>Thanks again and again. </p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351271</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351271</link>
					<pubDate>Wed, 05 Aug 2015 21:57:39 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351391</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351391</link>
					<pubDate>Thu, 06 Aug 2015 01:55:13 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for writing in!</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/" target="_blank" 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="https://theme.co/x/member/kb/customization-best-practices/" target="_blank" rel="nofollow">Customization Best Practices</a>.</p>
<p>Once your child theme is active, please add this code in your child theme&#8217;s functions.php file</p>
<pre><code>function move_add_to_cart(){
  remove_action( &#039;woocommerce_single_product_summary&#039;, &#039;woocommerce_template_single_add_to_cart&#039; );
  add_action( &#039;woocommerce_single_product_summary&#039;, &#039;woocommerce_template_single_add_to_cart&#039;, 15 );
}
add_action( &#039;wp&#039;, &#039;move_add_to_cart&#039; );</code></pre>
<p>Please let us know if this works out for you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351912</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-351912</link>
					<pubDate>Thu, 06 Aug 2015 13:37:01 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks. </p>
<p>Sounds like I&#8217;m delving into child themes. </p>
<p>Once I set up a child theme should all of my Custom CSS live in the style.css file or can it stay in the customizer? </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352010</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352010</link>
					<pubDate>Thu, 06 Aug 2015 15:44:46 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

					<description>
						<![CDATA[
						<p>Additionally, </p>
<p>The below thread left me concerned about having to manually update plugins each time I updated X. </p>
<p>Has this been addressed or will I have to follow the procedure outlined (in the thread) to ensure I always have the latest version of X&#8217;s native plugins? </p>
<p><a href="https://community.theme.co//forums/topic/updating-parent-theme-does-not-update-child-theme-plugins/" rel="nofollow">https://community.theme.co//forums/topic/updating-parent-theme-does-not-update-child-theme-plugins/</a></p>
<p>Thanks and cheers. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352030</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352030</link>
					<pubDate>Thu, 06 Aug 2015 16:03:05 +0000</pubDate>
					<dc:creator>Rupok</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>Thanks for updating! You can still use Customizer for custom CSS or you can place the CSS into Cild Theme&#8217;s style.css file. </p>
<p>And about the last question, I am not sure what&#8217;s your concern actually. It&#8217;s a pretty old thread and X got some major updates since then. Would you please clarify the question here? FYI, you need to keep the parent theme and extensions updated. You can update the extensions automatically. </p>
<p>Thanks </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352059</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352059</link>
					<pubDate>Thu, 06 Aug 2015 16:43:01 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

					<description>
						<![CDATA[
						<p>Hey,<br />
Thanks again. </p>
<p>Regarding last question. Yes, I saw it was old and figured it&#8217;s been resolved. Just wanted to ask if I still had to manually update x&#8217;s plugins via FTP. </p>
<p>Just uploaded child theme on my test site.. stupid simple as your many demos stated. My apprehension was simply due to inexperience. </p>
<p>Trying out the above edit to functions.php now. Will let you know how it goes. </p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352082</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352082</link>
					<pubDate>Thu, 06 Aug 2015 17:18:17 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Support, </p>
<p>Followed the above instructions. Worked great. Thank you!</p>
<p>I now have 2 add to cart and qty buttons. How can I remove the bottom button? See page example and login info (if necessary) above. </p>
<p>For anyone else following this thread the last line is missing a &#8220;c&#8221; in action. You&#8217;ll receive a FATAL ERROR if  this is not edited.  It should read:<br />
add_action( &#8216;wp&#8217;, &#8216;move_add_to_cart&#8217; );</p>
<p>Cheers</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352267</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352267</link>
					<pubDate>Thu, 06 Aug 2015 21:22:01 +0000</pubDate>
					<dc:creator>Lely</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for pointing that out 🙂<br />
Upon checking the product page, I am only seeing one Add to cart button. Can you clarify how and where you see those two buttons?<br />
<img decoding="async" src="http://oi60.tinypic.com/11gq536.jpg" alt="" /><br />
You may also add the following CSS to remove the extra scroll bar:</p>
<pre><code>body {
    overflow: initial;
}</code></pre>
<p>Hope this helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352277</guid>
					<title><![CDATA[Reply To: Single Product &quot;Add To Cart&quot; Button Placement]]></title>
					<link>https://theme.co/archive/forums/topic/single-product-add-to-cart-button-placement/#post-352277</link>
					<pubDate>Thu, 06 Aug 2015 21:32:50 +0000</pubDate>
					<dc:creator>GRCo</dc:creator>

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

					
					
				</item>

					
		
	</channel>
	</rss>

