<?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 &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/feed/</link>
		<description></description>
		<lastBuildDate>Wed, 29 Oct 2025 07:56:50 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269587</guid>
					<title><![CDATA[WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269587</link>
					<pubDate>Sat, 09 May 2015 08:17:21 +0000</pubDate>
					<dc:creator>intoxify</dc:creator>

					<description>
						<![CDATA[
						<p>Hi Guys,</p>
<p>We&#8217;re just testing WooCommerce with our site and have noticed a duplicate &#8216;Proceed to Checkout&#8217; label during the checkout stage:</p>
<p><a href="https://www.dropbox.com/s/cxx6ytlxh19dp5t/Screenshot%202015-05-09%2009.15.21.png?dl=0" rel="nofollow">https://www.dropbox.com/s/cxx6ytlxh19dp5t/Screenshot%202015-05-09%2009.15.21.png?dl=0</a></p>
<p>Our site is at <a href="http://www.intoxifyhosting.com" rel="nofollow">http://www.intoxifyhosting.com</a>, we&#8217;re using the latest version of WordPress, later version of the X theme, the Renew version of the theme and latest version of the shortcode plugin. </p>
<p>Can you help?</p>
<p>Kind regards</p>
<p>Dan</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269589</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269589</link>
					<pubDate>Sat, 09 May 2015 08:23:23 +0000</pubDate>
					<dc:creator>Christopher</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Please connect through FTP account, find cart.php file located in /wp-content/themes/x/woocommerce/cart/cart.php, open this file and replace existing code with following code:</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>Hope it helps.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269772</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269772</link>
					<pubDate>Sat, 09 May 2015 17:41:49 +0000</pubDate>
					<dc:creator>intoxify</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Thanks for getting back to me, but unfortunately, it didn&#8217;t work. Here&#8217;s a screenshot of the webpage: <a href="https://www.dropbox.com/s/lp72p3oh42sbwjp/Screenshot%202015-05-09%2018.40.17.png?dl=0" rel="nofollow">https://www.dropbox.com/s/lp72p3oh42sbwjp/Screenshot%202015-05-09%2018.40.17.png?dl=0</a></p>
<p>And here&#8217;s the code when I edited it: <a href="https://www.dropbox.com/s/ukw274idoo10bvt/Screenshot%202015-05-09%2018.41.17.png?dl=0" rel="nofollow">https://www.dropbox.com/s/ukw274idoo10bvt/Screenshot%202015-05-09%2018.41.17.png?dl=0</a></p>
<p>Any ideas what might be causing this?</p>
<p>Kind regards</p>
<p>Dan</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269778</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269778</link>
					<pubDate>Sat, 09 May 2015 17:57:50 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,<br />
In this case, would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:</p>
<p>– Link to your site<br />
– WordPress Admin username / Password<br />
– FTP Account</p>
<p><strong>Don’t forget to select Set as a private reply. This ensures your information is only visible to our staff.</strong><br />
Many thanks.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269837</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269837</link>
					<pubDate>Sat, 09 May 2015 22:56:53 +0000</pubDate>
					<dc:creator>intoxify</dc:creator>

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

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269927</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-269927</link>
					<pubDate>Sun, 10 May 2015 03:44:21 +0000</pubDate>
					<dc:creator>Rue Nel</dc:creator>

					<description>
						<![CDATA[
						<p>Hello There,</p>
<p>Thanks for providing us the access informations. We have checked and fixed it for you. <a href="http://prntscr.com/73iu0b" rel="nofollow">http://prntscr.com/73iu0b</a></p>
<p>Please confirm that it is already fix.</p>
<p>If there’s anything else, we can help you with, please let us know.</p>
<p>Thank you.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278421</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278421</link>
					<pubDate>Thu, 21 May 2015 04:32:55 +0000</pubDate>
					<dc:creator>potato83</dc:creator>

					<description>
						<![CDATA[
						<p>Hi!</p>
<p>I&#8217;m having the exact same issue. Should I try the modification to cart.php above or is there a better way? (New to all of this&#8230;) 😉<br />
thx</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278435</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278435</link>
					<pubDate>Thu, 21 May 2015 05:09:44 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Yes, you should do the cart.php editing, it&#8217;s the only way 🙂</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278765</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278765</link>
					<pubDate>Thu, 21 May 2015 16:11:09 +0000</pubDate>
					<dc:creator>potato83</dc:creator>

					<description>
						<![CDATA[
						<p>Success! Thanks</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278786</guid>
					<title><![CDATA[Reply To: WooCommerce &#8211; Duplicate &#039;Proceed to Checkout&#039; Label Present]]></title>
					<link>https://theme.co/archive/forums/topic/woocommerce-duplicate-proceed-to-checkout-label-present/#post-278786</link>
					<pubDate>Thu, 21 May 2015 16:41:12 +0000</pubDate>
					<dc:creator>Nico</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re most welcome.</p>
<p>Have a great day! 🙂</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

