<?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/success-page/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>Testing the success page</title>
		<link>https://www.the-mage-expert.com/1189/magento2-testing-the-success-page/</link>
		<comments>https://www.the-mage-expert.com/1189/magento2-testing-the-success-page/#comments</comments>
		<pubDate>Fri, 15 Mar 2019 08:19:36 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[Magento 2]]></category>
		<category><![CDATA[success page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1189</guid>
		<description><![CDATA[Want to test the Magento 2 success page after making some changes there without placing many orders in your Magento 2 store? By changing the following code in vendor/magento/module-checkout/Controller/Onepage/Success.php you only have to place one order. So look for the&#8230;]]></description>
				<content:encoded><![CDATA[<p>Want to test the Magento 2 success page after making some changes there without placing many orders in your Magento 2 store? By changing the following code in <strong>vendor/magento/module-checkout/Controller/Onepage/Success.php</strong> you only have to place one order. So look for the following line of code and simply comment it out:</p><pre class="crayon-plain-tag">$session-&gt;clearQuote(); // before
//$session-&gt;clearQuote(); // after</pre><p>You can now reload the page as often as you like. Make sure to undo your changes when you are done!</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/1189/magento2-testing-the-success-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting order items on success page (success.phtml)</title>
		<link>https://www.the-mage-expert.com/395/magento-getting-ordered-items-success-page/</link>
		<comments>https://www.the-mage-expert.com/395/magento-getting-ordered-items-success-page/#comments</comments>
		<pubDate>Fri, 09 Aug 2013 11:32:47 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[success page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=395</guid>
		<description><![CDATA[Use the following code to get all ordered items on the Magento success page. [crayon-6a7ac046eebbd/]]]></description>
				<content:encoded><![CDATA[<p>Use the following code to get all ordered items on the Magento success page.</p>
<p></p><pre class="crayon-plain-tag">$order = Mage::getModel('sales/order')-&gt;loadByIncrementId($this-&gt;getOrderId());
$items = $order-&gt;getAllItems();
foreach($items as $item) {
    //...                   
}</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/395/magento-getting-ordered-items-success-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting custom options of ordered items on success page (success.phtml)</title>
		<link>https://www.the-mage-expert.com/392/magento-getting-custom-options-ordered-items-success-page/</link>
		<comments>https://www.the-mage-expert.com/392/magento-getting-custom-options-ordered-items-success-page/#comments</comments>
		<pubDate>Fri, 09 Aug 2013 11:31:27 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[custom options]]></category>
		<category><![CDATA[success page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=392</guid>
		<description><![CDATA[Using the folowing code you can get the custom options of the ordered items on the Magento success page. [crayon-6a7ac046ef772/]]]></description>
				<content:encoded><![CDATA[<p>Using the folowing code you can get the custom options of the ordered items on the Magento success page.</p>
<p></p><pre class="crayon-plain-tag">$order = Mage::getModel('sales/order')-&gt;loadByIncrementId($this-&gt;getOrderId());
$items = $order-&gt;getAllItems();
foreach($items as $item) {
    $options = $item-&gt;getProductOptions();
    foreach ($options['options'] as $itemOption) {
        $optionTitle = $itemOption['title'];
        $optionValue = $itemOption['value'];
        //...                   
    }
}</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/392/magento-getting-custom-options-ordered-items-success-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
