<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Magento Expert</title>
	<atom:link href="https://www.the-mage-expert.com/tag/cart/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.the-mage-expert.com</link>
	<description>Your Magento Commerce Expert</description>
	<lastBuildDate>Tue, 24 Jan 2023 09:37:24 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Cart items are disappearing from cart</title>
		<link>https://www.the-mage-expert.com/940/magento-cart-items-are-disappearing-from-cart/</link>
		<comments>https://www.the-mage-expert.com/940/magento-cart-items-are-disappearing-from-cart/#comments</comments>
		<pubDate>Thu, 18 Dec 2014 09:42:05 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[cart]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=940</guid>
		<description><![CDATA[Sometimes, when refreshing the Magento cart page for example, the cart items will disappear. The problem here might be a missing image. Check if there are any missing images on the cart page and if so, upload them to your&#8230;]]></description>
				<content:encoded><![CDATA[<p>Sometimes, when refreshing the Magento cart page for example, the cart items will disappear. The problem here might be a missing image. Check if there are any missing images on the cart page and if so, upload them to your server.</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/940/magento-cart-items-are-disappearing-from-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing estimated shipping from cart</title>
		<link>https://www.the-mage-expert.com/324/magento-removing-estimated-shipping-cart/</link>
		<comments>https://www.the-mage-expert.com/324/magento-removing-estimated-shipping-cart/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 14:54:09 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[cart]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=324</guid>
		<description><![CDATA[To remove the estimated shipping block from the Magento cart, you have to add the below code, or, if the checkout_cart_index handle already exists, simply add the checkout.cart section to it. [crayon-6a7ac014a9e53/]]]></description>
				<content:encoded><![CDATA[<p>To remove the estimated shipping block from the Magento cart, you have to add the below code, or, if the <em>checkout_cart_index</em> handle already exists, simply add the <em>checkout.cart</em> section to it.</p>
<p></p><pre class="crayon-plain-tag">&lt;checkout_cart_index&gt;
    &lt;reference name=&quot;content&quot;&gt;
        &lt;block name=&quot;checkout.cart&quot;&gt;
            &lt;remove name=&quot;checkout.cart.shipping&quot;/&gt;
        &lt;/block&gt;
    &lt;/reference&gt;
&lt;/checkout_cart_index&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/324/magento-removing-estimated-shipping-cart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing items from cart programmatically</title>
		<link>https://www.the-mage-expert.com/304/magento-removing-cart-items-programmatically/</link>
		<comments>https://www.the-mage-expert.com/304/magento-removing-cart-items-programmatically/#comments</comments>
		<pubDate>Fri, 05 Apr 2013 15:00:20 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[cart]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=304</guid>
		<description><![CDATA[Using the following code, you can remove an item from the Magento cart by item id: [crayon-6a7ac014b1fe5/]]]></description>
				<content:encoded><![CDATA[<p>Using the following code, you can remove an item from the Magento cart by item id:</p>
<p></p><pre class="crayon-plain-tag">$cartHelper = Mage::helper('checkout/cart');
$cartItemId = 123;
$cartHelper-&gt;getCart()-&gt;removeItem($cartItemId)-&gt;save();</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/304/magento-removing-cart-items-programmatically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the product for cart item</title>
		<link>https://www.the-mage-expert.com/292/magento-getting-product-for-cart-item/</link>
		<comments>https://www.the-mage-expert.com/292/magento-getting-product-for-cart-item/#comments</comments>
		<pubDate>Wed, 03 Apr 2013 13:06:49 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[cart]]></category>
		<category><![CDATA[item]]></category>
		<category><![CDATA[product]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=292</guid>
		<description><![CDATA[Use the following code to get the matching product of a Magento cart item: [crayon-6a7ac014b2490/]]]></description>
				<content:encoded><![CDATA[<p>Use the following code to get the matching product of a Magento cart item:</p>
<p></p><pre class="crayon-plain-tag">$product = $item-&gt;getProduct();</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/292/magento-getting-product-for-cart-item/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
