<?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 Cart Problems &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/woocommerce-cart-problems/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/feed/</link>
		<description></description>
		<lastBuildDate>Sat, 11 Oct 2025 12:52:31 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256203</guid>
					<title><![CDATA[WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256203</link>
					<pubDate>Thu, 23 Apr 2015 00:00:23 +0000</pubDate>
					<dc:creator>allcal</dc:creator>

					<description>
						<![CDATA[
						<p>I started a new website from scratch with updated versions of:<br />
Wordpress Version 4.1.2<br />
Theme X Version 3.2.3<br />
WooCommerce Version 3.6.8</p>
<p>Domain:<br />
<a href="http://wordpresswebsitedesigns.org/" rel="nofollow">http://wordpresswebsitedesigns.org/</a></p>
<p>Error:&#8221;Your theme has bundled outdated copies of WooCommerce template files. If you notice an issue on your site, this could be the reason.</p>
<p>x/woocommerce/cart/cart.php version 2.3.0 is out of date. The core version is 2.3.8, &#8221;</p>
<p>The cart is showing the subtotal, total, and proceed to checkout in a duplicate manner. How do you fix that?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256337</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256337</link>
					<pubDate>Thu, 23 Apr 2015 03:30:12 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for posting in!</p>
<p>To resolve that issue, please download the file <code>x/woocommerce/cart/cart.php</code> to your local computer and replace it&#8217;s content with the code below. After making the changes, please save it and please upload again in the same location.</p>
<pre><code>&lt;?php

// =============================================================================
// WOOCOMMERCE/CART/CART.PHP
// -----------------------------------------------------------------------------
// @version 2.3.8
// =============================================================================

if ( ! defined( &#039;ABSPATH&#039; ) ) {
  exit; // Exit if accessed directly
}

wc_print_notices();

do_action( &#039;woocommerce_before_cart&#039; ); ?&gt;

&lt;form action=&quot;&lt;?php echo esc_url( WC()-&gt;cart-&gt;get_cart_url() ); ?&gt;&quot; method=&quot;post&quot; class=&quot;cart-form&quot;&gt;

  &lt;?php do_action( &#039;woocommerce_before_cart_table&#039; ); ?&gt;

  &lt;table class=&quot;shop_table cart&quot; cellspacing=&quot;0&quot;&gt;
    &lt;thead&gt;
      &lt;tr&gt;
        &lt;th class=&quot;product-remove&quot;&gt;&amp;nbsp;&lt;/th&gt;
        &lt;th class=&quot;product-thumbnail&quot;&gt;&amp;nbsp;&lt;/th&gt;
        &lt;th class=&quot;product-name&quot;&gt;&lt;?php _e( &#039;Product&#039;, &#039;__x__&#039; ); ?&gt;&lt;/th&gt;
        &lt;th class=&quot;product-price&quot;&gt;&lt;?php _e( &#039;Price&#039;, &#039;__x__&#039; ); ?&gt;&lt;/th&gt;
        &lt;th class=&quot;product-quantity&quot;&gt;&lt;?php _e( &#039;Quantity&#039;, &#039;__x__&#039; ); ?&gt;&lt;/th&gt;
        &lt;th class=&quot;product-subtotal&quot;&gt;&lt;?php _e( &#039;Total&#039;, &#039;__x__&#039; ); ?&gt;&lt;/th&gt;
      &lt;/tr&gt;
    &lt;/thead&gt;
    &lt;tbody&gt;

      &lt;?php do_action( &#039;woocommerce_before_cart_contents&#039; ); ?&gt;

      &lt;?php

      foreach ( WC()-&gt;cart-&gt;get_cart() as $cart_item_key =&gt; $cart_item ) {

        $_product   = apply_filters( &#039;woocommerce_cart_item_product&#039;, $cart_item[&#039;data&#039;], $cart_item, $cart_item_key );
        $product_id = apply_filters( &#039;woocommerce_cart_item_product_id&#039;, $cart_item[&#039;product_id&#039;], $cart_item, $cart_item_key );

        if ( $_product &amp;&amp; $_product-&gt;exists() &amp;&amp; $cart_item[&#039;quantity&#039;] &gt; 0 &amp;&amp; apply_filters( &#039;woocommerce_cart_item_visible&#039;, true, $cart_item, $cart_item_key ) ) {

          ?&gt;

          &lt;tr class=&quot;&lt;?php echo esc_attr( apply_filters( &#039;woocommerce_cart_item_class&#039;, &#039;cart_item&#039;, $cart_item, $cart_item_key ) ); ?&gt;&quot;&gt;

            &lt;td class=&quot;product-remove&quot;&gt;
              &lt;?php echo apply_filters( &#039;woocommerce_cart_item_remove_link&#039;, sprintf( &#039;&lt;a href=&quot;%s&quot; class=&quot;remove&quot; title=&quot;%s&quot;&gt;&amp;times;&lt;/a&gt;&#039;, esc_url( WC()-&gt;cart-&gt;get_remove_url( $cart_item_key ) ), __( &#039;Remove this item&#039;, &#039;__x__&#039; ) ), $cart_item_key ); ?&gt;
            &lt;/td&gt;

            &lt;td class=&quot;product-thumbnail&quot;&gt;
              &lt;?php
                $thumbnail = apply_filters( &#039;woocommerce_cart_item_thumbnail&#039;, $_product-&gt;get_image(), $cart_item, $cart_item_key );
                if ( ! $_product-&gt;is_visible() ) {
                  echo $thumbnail;
                } else {
                  printf( &#039;&lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt;&#039;, $_product-&gt;get_permalink( $cart_item ), $thumbnail );
                }
              ?&gt;
            &lt;/td&gt;

            &lt;td class=&quot;product-name&quot;&gt;
              &lt;?php
                if ( ! $_product-&gt;is_visible() ) {
                  echo apply_filters( &#039;woocommerce_cart_item_name&#039;, $_product-&gt;get_title(), $cart_item, $cart_item_key );
                } else {
                  echo apply_filters( &#039;woocommerce_cart_item_name&#039;, sprintf( &#039;&lt;a href=&quot;%s&quot;&gt;%s&lt;/a&gt;&#039;, $_product-&gt;get_permalink( $cart_item ), $_product-&gt;get_title() ), $cart_item, $cart_item_key );
                }

                // Meta data
                echo WC()-&gt;cart-&gt;get_item_data( $cart_item );

                // Backorder notification
                if ( $_product-&gt;backorders_require_notification() &amp;&amp; $_product-&gt;is_on_backorder( $cart_item[&#039;quantity&#039;] ) ) {
                  echo &#039;&lt;p class=&quot;backorder_notification&quot;&gt;&#039; . __( &#039;Available on backorder&#039;, &#039;__x__&#039; ) . &#039;&lt;/p&gt;&#039;;
                }
              ?&gt;
            &lt;/td&gt;

            &lt;td class=&quot;product-price&quot;&gt;
              &lt;?php echo apply_filters( &#039;woocommerce_cart_item_price&#039;, WC()-&gt;cart-&gt;get_product_price( $_product ), $cart_item, $cart_item_key ); ?&gt;
            &lt;/td&gt;

            &lt;td class=&quot;product-quantity&quot;&gt;
              &lt;?php
                if ( $_product-&gt;is_sold_individually() ) {
                  $product_quantity = sprintf( &#039;1 &lt;input type=&quot;hidden&quot; name=&quot;cart[%s][qty]&quot; value=&quot;1&quot; /&gt;&#039;, $cart_item_key );
                } else {
                  $product_quantity = woocommerce_quantity_input( array(
                    &#039;input_name&#039;  =&gt; &quot;cart[{$cart_item_key}][qty]&quot;,
                    &#039;input_value&#039; =&gt; $cart_item[&#039;quantity&#039;],
                    &#039;max_value&#039;   =&gt; $_product-&gt;backorders_allowed() ? &#039;&#039; : $_product-&gt;get_stock_quantity(),
                    &#039;min_value&#039;   =&gt; &#039;0&#039;
                  ), $_product, false );
                }
                echo apply_filters( &#039;woocommerce_cart_item_quantity&#039;, $product_quantity, $cart_item_key );
              ?&gt;
            &lt;/td&gt;

            &lt;td class=&quot;product-subtotal&quot;&gt;
              &lt;?php echo apply_filters( &#039;woocommerce_cart_item_subtotal&#039;, WC()-&gt;cart-&gt;get_product_subtotal( $_product, $cart_item[&#039;quantity&#039;] ), $cart_item, $cart_item_key ); ?&gt;
            &lt;/td&gt;

          &lt;/tr&gt;

          &lt;?php

        }

      }

      do_action( &#039;woocommerce_cart_contents&#039; );

      ?&gt;

      &lt;tr&gt;
        &lt;td colspan=&quot;6&quot; class=&quot;actions&quot;&gt;

          &lt;?php if ( WC()-&gt;cart-&gt;coupons_enabled() ) { ?&gt;
            &lt;div class=&quot;coupon action-group&quot;&gt;
              &lt;label for=&quot;coupon_code&quot;&gt;&lt;?php _e( &#039;Coupon&#039;, &#039;__x__&#039; ); ?&gt;:&lt;/label&gt; &lt;input name=&quot;coupon_code&quot; type=&quot;text&quot; class=&quot;input-text&quot; id=&quot;coupon_code&quot; value=&quot;&quot; placeholder=&quot;&lt;?php _e( &#039;Coupon code&#039;, &#039;__x__&#039; ); ?&gt;&quot; /&gt; &lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;apply_coupon&quot; value=&quot;&lt;?php _e( &#039;Apply Coupon&#039;, &#039;__x__&#039; ); ?&gt;&quot; /&gt;
              &lt;?php do_action( &#039;woocommerce_cart_coupon&#039; ); ?&gt;
            &lt;/div&gt;
          &lt;?php } ?&gt;

          &lt;div class=&quot;update action-group&quot;&gt;
            &lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;update_cart&quot; value=&quot;&lt;?php _e( &#039;Update Cart&#039;, &#039;__x__&#039; ); ?&gt;&quot; /&gt;
            &lt;?php do_action( &#039;woocommerce_cart_actions&#039; ); ?&gt;
          &lt;/div&gt;

          &lt;?php wp_nonce_field( &#039;woocommerce-cart&#039; ); ?&gt;

        &lt;/td&gt;
      &lt;/tr&gt;

      &lt;?php do_action( &#039;woocommerce_after_cart_contents&#039; ); ?&gt;

    &lt;/tbody&gt;
  &lt;/table&gt;

  &lt;?php do_action( &#039;woocommerce_after_cart_table&#039; ); ?&gt;

&lt;/form&gt;

&lt;div class=&quot;cart-collaterals&quot;&gt;

  &lt;?php do_action( &#039;woocommerce_cart_collaterals&#039; ); ?&gt;

&lt;/div&gt;

&lt;?php do_action( &#039;woocommerce_after_cart&#039; ); ?&gt;</code></pre>
<p>Please let us know if this works out for you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256438</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256438</link>
					<pubDate>Thu, 23 Apr 2015 06:52:44 +0000</pubDate>
					<dc:creator>allcal</dc:creator>

					<description>
						<![CDATA[
						<p>I added that code in wp-content / plugins / woocommerce / templates / cart / cart.php. It didn&#8217;t change anything. </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256442</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256442</link>
					<pubDate>Thu, 23 Apr 2015 06:55:45 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello Again,</p>
<p>Sorry again if we wasn&#8217;t clear enough. You need to upload the file to the same location, 	<code>x/woocommerce/cart/cart.php</code></p>
<p>Putting it in the plugins, wp-content / plugins / woocommerce / templates / cart / cart.php will not do anything.</p>
<p>Please let us know how it goes.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256444</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256444</link>
					<pubDate>Thu, 23 Apr 2015 07:02:23 +0000</pubDate>
					<dc:creator>allcal</dc:creator>

					<description>
						<![CDATA[
						<p>I ended up just using an older version of WooCommerce and it works fine now.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256445</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256445</link>
					<pubDate>Thu, 23 Apr 2015 07:04:16 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Sorry for the inconvenience. We will be releasing a new release updates in the next few days. And that includes some fixes for Woocommerce templates. Please bear with us.</p>
<p>Thanks for understanding.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256449</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256449</link>
					<pubDate>Thu, 23 Apr 2015 07:19:43 +0000</pubDate>
					<dc:creator>Louise C</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you &#8211; it fixed the duplication but the layout is no good. It doesn&#8217;t line up the totals/subtotals and Checkout buttons. </p>
<p>When is the new release coming out?</p>
<p>Thanks,<br />
Wizard247</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256451</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256451</link>
					<pubDate>Thu, 23 Apr 2015 07:21:21 +0000</pubDate>
					<dc:creator>Paul R</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Wizard247,</p>
<p>Thanks for writing in! To assist you with this issue, we&#8217;ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256455</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256455</link>
					<pubDate>Thu, 23 Apr 2015 07:26:59 +0000</pubDate>
					<dc:creator>allcal</dc:creator>

					<description>
						<![CDATA[
						<p>I am also having the layout issues with the shop, <a href="http://wordpresswebsitedesigns.org/shop/" rel="nofollow">http://wordpresswebsitedesigns.org/shop/</a>, and products category pages with the &#8220;add to cart&#8221; buttons not working correctly and appearing over the featured images. Will this be solved in the update also?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256461</guid>
					<title><![CDATA[Reply To: WooCommerce Cart Problems]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-cart-problems/#post-256461</link>
					<pubDate>Thu, 23 Apr 2015 07:32:45 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>The add to cart buttons is being placed over the featured image in our Icon stack. Please compare your site to our demo site <a href="http://theme.co/x/demo/shop/icon/" target="_blank" rel="nofollow">http://theme.co/x/demo/shop/icon/</a></p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

