<?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>Remove cart icon on &#039;Add to Cart&#039; button. &#8211; Themeco Community</title>
		<atom:link href="https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/feed/" rel="self" type="application/rss+xml" />
		<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/feed/</link>
		<description></description>
		<lastBuildDate>Sun, 12 Oct 2025 01:00:25 +0000</lastBuildDate>
		<generator>https://bbpress.org/?v=2.6.14</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47198</guid>
					<title><![CDATA[Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47198</link>
					<pubDate>Thu, 22 May 2014 05:32:53 +0000</pubDate>
					<dc:creator>Samuel B</dc:creator>

					<description>
						<![CDATA[
						<p>Hey guys,</p>
<p>I have been searching for hours but can&#8217;t find a way to remove the little cart logo/icon from the &#8216;add to cart&#8217; button.</p>
<p>Here&#8217;s a picture of my button at the moment:<br />
<a href="http://imgur.com/oyWKF8C" rel="nofollow">http://imgur.com/oyWKF8C</a></p>
<p>(as you can see, I&#8217;ve changed the text to &#8216;check it out&#8217;)<br />
How can I remove the little shopping cart icon next to the text?</p>
<p>Thanks<br />
Sam</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47362</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47362</link>
					<pubDate>Thu, 22 May 2014 14:44:39 +0000</pubDate>
					<dc:creator>Tom B</dc:creator>

					<description>
						<![CDATA[
						<p>It&#8217;s not quite the cleanest fix but if you put</p>
<pre><code>
.woocommerce .button.product_type_simple:before, .woocommerce .button.single_add_to_cart_button:before, .woocommerce-page .button.product_type_simple:before, .woocommerce-page .button.single_add_to_cart_button:before {
    content: &quot;&quot;;
}
</code></pre>
<p>into the custom css section of the customizer it should have the desired effect.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47554</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47554</link>
					<pubDate>Fri, 23 May 2014 00:19:45 +0000</pubDate>
					<dc:creator>Samuel B</dc:creator>

					<description>
						<![CDATA[
						<p>Awesome, thanks Tom!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47895</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-47895</link>
					<pubDate>Fri, 23 May 2014 23:14:12 +0000</pubDate>
					<dc:creator>Rad</dc:creator>

					<description>
						<![CDATA[
						<p>Thanks for helping Tom! 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-295797</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-295797</link>
					<pubDate>Mon, 08 Jun 2015 13:36:20 +0000</pubDate>
					<dc:creator>Mark M</dc:creator>

					<description>
						<![CDATA[
						<p>I am looking for a way to do this and the above fix is not working anymore.</p>
<p>Ideally the fix would be some way of doing it in the functions.php in my child theme. I have already managed to change the button text in there via adding this code. Just need to work out how to remove the cart icon now.</p>
<pre><code>// Change the add to cart text on single product pages
add_filter( &#039;woocommerce_product_single_add_to_cart_text&#039;, &#039;woo_custom_cart_button_text&#039; );    // 2.1 +
function woo_custom_cart_button_text() {
        return __( &#039;Request A Sample&#039;, &#039;woocommerce&#039; );
}</code></pre>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296175</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296175</link>
					<pubDate>Mon, 08 Jun 2015 20:16:14 +0000</pubDate>
					<dc:creator>Friech</dc:creator>

					<description>
						<![CDATA[
						<p>Hi There,</p>
<p>The CSS code above still works on our end. Would you mind providing us the site URL?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296231</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296231</link>
					<pubDate>Mon, 08 Jun 2015 21:12:06 +0000</pubDate>
					<dc:creator>Mark M</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>My mistake it does work after clearing my cache, sorry.</p>
<p>Regards,</p>
<p>Mark</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296688</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-296688</link>
					<pubDate>Tue, 09 Jun 2015 10:09:30 +0000</pubDate>
					<dc:creator>Thai</dc:creator>

					<description>
						<![CDATA[
						<p>You&#8217;re most welcome.<br />
If you need anything else, please let us know 🙂</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-811117</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-811117</link>
					<pubDate>Thu, 25 Feb 2016 00:36:16 +0000</pubDate>
					<dc:creator>Wild-Speed</dc:creator>

					<description>
						<![CDATA[
						<p>Instead of removing, How can I replace the default shoppingcart icon? For example I&#8217;d like to use the fontawesome shopping basket for my &#8216;add to cart&#8217; buttons:</p>
<p>&lt;i class=&#8221;fa fa-shopping-basket&#8221;&gt;&lt;/i&gt;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-811400</guid>
					<title><![CDATA[Reply To: Remove cart icon on &#039;Add to Cart&#039; button.]]></title>
					<link>https://theme.co/archive/forums/topic/remove-cart-icon-on-add-to-cart-button/#post-811400</link>
					<pubDate>Thu, 25 Feb 2016 04:26:22 +0000</pubDate>
					<dc:creator>Rupok</dc:creator>

					<description>
						<![CDATA[
						<p>Hi <a href="https://theme.co/archive/users/wild-speed/" class="bbp-user-mention bbp-user-id-30172"> @wild-speed</a></p>
<p>Thanks for updating. You ca add the CSS to your <a href="https://theme.co/community/kb/how-to-setup-child-themes/" rel="nofollow">Child Theme</a>&#8216;s style.css : </p>
<pre><code>.woocommerce .button.product_type_simple:before, .woocommerce .button.single_add_to_cart_button:before, .woocommerce-page .button.product_type_simple:before, .woocommerce-page .button.single_add_to_cart_button:before {
    content: &quot;\f291&quot;;
}</code></pre>
<p>Hope this helps.</p>
<p>Cheers!</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

