<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Adelaide Cartridge Company&#039;s Blog</title>
	<atom:link href="http://blog.adelaidecartridge.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.adelaidecartridge.com</link>
	<description>We are cartridge world!</description>
	<lastBuildDate>Mon, 07 Feb 2011 06:28:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
	<item>
		<title>Comment on Product PDF price-list extension Magento by James</title>
		<link>http://blog.adelaidecartridge.com/product-pdf-price-list-extension-magento/#comment-591</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 07 Feb 2011 06:28:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=189#comment-591</guid>
		<description>Yes I can, Could you give me your email address and I can email a copy to you.</description>
		<content:encoded><![CDATA[<p>Yes I can, Could you give me your email address and I can email a copy to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Product PDF price-list extension Magento by Patrick Hooper</title>
		<link>http://blog.adelaidecartridge.com/product-pdf-price-list-extension-magento/#comment-496</link>
		<dc:creator>Patrick Hooper</dc:creator>
		<pubDate>Fri, 14 Jan 2011 01:20:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=189#comment-496</guid>
		<description>Are you able to provide the full source to have a look at? 

I am thinking about doing the same thing.  

If I make some enhancements I will pass back the updates.  

I want to add in thumbnails and have a category structure as well.</description>
		<content:encoded><![CDATA[<p>Are you able to provide the full source to have a look at? </p>
<p>I am thinking about doing the same thing.  </p>
<p>If I make some enhancements I will pass back the updates.  </p>
<p>I want to add in thumbnails and have a category structure as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dict by Sam</title>
		<link>http://blog.adelaidecartridge.com/dict/#comment-484</link>
		<dc:creator>Sam</dc:creator>
		<pubDate>Mon, 10 Jan 2011 03:11:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/#comment-484</guid>
		<description>Hi James,

Have a nice day,our company is a manufacturer of toner chips in china,providing best price and quality toner chips for HP/Samsung/Xerox/Epson and so on,now we have new chips for Samsung 1640,1660/1661/1665/1666,1910/1915/4623,4824/4828,if you wish,we will be glad to sent our price list for you.
Looking forward to your reply.

Best regards,
Sam
Email:sam@hptonerchips.com</description>
		<content:encoded><![CDATA[<p>Hi James,</p>
<p>Have a nice day,our company is a manufacturer of toner chips in china,providing best price and quality toner chips for HP/Samsung/Xerox/Epson and so on,now we have new chips for Samsung 1640,1660/1661/1665/1666,1910/1915/4623,4824/4828,if you wish,we will be glad to sent our price list for you.<br />
Looking forward to your reply.</p>
<p>Best regards,<br />
Sam<br />
Email:sam@hptonerchips.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on “Remove Shipping Lock” Error in 1515/1518/2025 printer by E.J.</title>
		<link>http://blog.adelaidecartridge.com/%e2%80%9cremove-shipping-lock%e2%80%9d-error-in-151515182025-printer/#comment-298</link>
		<dc:creator>E.J.</dc:creator>
		<pubDate>Tue, 23 Nov 2010 16:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=24#comment-298</guid>
		<description>Your info was very helpful.</description>
		<content:encoded><![CDATA[<p>Your info was very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getprice Sales Tracking On Magento by Lucas</title>
		<link>http://blog.adelaidecartridge.com/getprice-sales-tracking-on-magento/#comment-254</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Sat, 13 Nov 2010 19:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=202#comment-254</guid>
		<description>Hi, have you found a solution? 
Don&#039;t see any posted, so this is what I found/did.
I only did this yesterday to test my tracking stats with getprice.
Ideally this should be done in a module. (no time right now)

Firstly, it would seem that in the success page, the actual order/quote data is not actually available, so we need to push that onto the page block

This is done in Mage_Checkout_Block_Onepage_Success

The original:

/**
     * Get last order ID from session, fetch it and check whether it can be viewed, printed etc
     */
    protected function _prepareLastOrder()
    {
        $orderId = Mage::getSingleton(&#039;checkout/session&#039;)-&gt;getLastOrderId();
        if ($orderId) {
            $order = Mage::getModel(&#039;sales/order&#039;)-&gt;load($orderId);
            if ($order-&gt;getId()) {
                $isVisible = !in_array($order-&gt;getState(),
                    Mage::getSingleton(&#039;sales/order_config&#039;)-&gt;getInvisibleOnFrontStates());
                $this-&gt;addData(array(
                    &#039;is_order_visible&#039; =&gt; $isVisible,
                    &#039;view_order_id&#039; =&gt; $this-&gt;getUrl(&#039;sales/order/view/&#039;, array(&#039;order_id&#039; =&gt; $orderId)),
                    &#039;print_url&#039; =&gt; $this-&gt;getUrl(&#039;sales/order/print&#039;, array(&#039;order_id&#039;=&gt; $orderId)),
                    &#039;can_print_order&#039; =&gt; $isVisible,
                    &#039;can_view_order&#039;  =&gt; Mage::getSingleton(&#039;customer/session&#039;)-&gt;isLoggedIn() &amp;&amp; $isVisible,
                    &#039;order_id&#039;  =&gt; $order-&gt;getIncrementId(),
                ));
            }
        }
    }

and my change, making the whole order and quote objects data available to sussess page:

    /**
     * Get last order ID from session, fetch it and check whether it can be viewed, printed etc
     */
    protected function _prepareLastOrder()
    {
        $orderId = Mage::getSingleton(&#039;checkout/session&#039;)-&gt;getLastOrderId();
        if ($orderId) {
            $order = Mage::getModel(&#039;sales/order&#039;)-&gt;load($orderId);
            if ($order-&gt;getId()) {
                $isVisible = !in_array($order-&gt;getState(),
                    Mage::getSingleton(&#039;sales/order_config&#039;)-&gt;getInvisibleOnFrontStates());
                	$quote = mage::getModel(&#039;sales/quote&#039;)-&gt;load($order-&gt;getQuoteId());
                	$this-&gt;addData(array(
                    &#039;is_order_visible&#039; =&gt; $isVisible,
                    &#039;view_order_id&#039; =&gt; $this-&gt;getUrl(&#039;sales/order/view/&#039;, array(&#039;order_id&#039; =&gt; $orderId)),
                    &#039;print_url&#039; =&gt; $this-&gt;getUrl(&#039;sales/order/print&#039;, array(&#039;order_id&#039;=&gt; $orderId)),
                    &#039;can_print_order&#039; =&gt; $isVisible,
                    &#039;can_view_order&#039;  =&gt; Mage::getSingleton(&#039;customer/session&#039;)-&gt;isLoggedIn() &amp;&amp; $isVisible,
                    &#039;order_id&#039;  =&gt; $order-&gt;getIncrementId(),
                	&#039;order_object&#039; =&gt; $order,
                    &#039;quote_object&#039; =&gt; $quote,
                ));
            }
        }
    }

thus in template you can use : $this-&gt;getOrderObject()-&gt;getGrandTotal() as one example.

Hope this helps</description>
		<content:encoded><![CDATA[<p>Hi, have you found a solution?<br />
Don&#8217;t see any posted, so this is what I found/did.<br />
I only did this yesterday to test my tracking stats with getprice.<br />
Ideally this should be done in a module. (no time right now)</p>
<p>Firstly, it would seem that in the success page, the actual order/quote data is not actually available, so we need to push that onto the page block</p>
<p>This is done in Mage_Checkout_Block_Onepage_Success</p>
<p>The original:</p>
<p>/**<br />
     * Get last order ID from session, fetch it and check whether it can be viewed, printed etc<br />
     */<br />
    protected function _prepareLastOrder()<br />
    {<br />
        $orderId = Mage::getSingleton(&#8216;checkout/session&#8217;)-&gt;getLastOrderId();<br />
        if ($orderId) {<br />
            $order = Mage::getModel(&#8216;sales/order&#8217;)-&gt;load($orderId);<br />
            if ($order-&gt;getId()) {<br />
                $isVisible = !in_array($order-&gt;getState(),<br />
                    Mage::getSingleton(&#8216;sales/order_config&#8217;)-&gt;getInvisibleOnFrontStates());<br />
                $this-&gt;addData(array(<br />
                    &#8216;is_order_visible&#8217; =&gt; $isVisible,<br />
                    &#8216;view_order_id&#8217; =&gt; $this-&gt;getUrl(&#8216;sales/order/view/&#8217;, array(&#8216;order_id&#8217; =&gt; $orderId)),<br />
                    &#8216;print_url&#8217; =&gt; $this-&gt;getUrl(&#8216;sales/order/print&#8217;, array(&#8216;order_id&#8217;=&gt; $orderId)),<br />
                    &#8216;can_print_order&#8217; =&gt; $isVisible,<br />
                    &#8216;can_view_order&#8217;  =&gt; Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;isLoggedIn() &amp;&amp; $isVisible,<br />
                    &#8216;order_id&#8217;  =&gt; $order-&gt;getIncrementId(),<br />
                ));<br />
            }<br />
        }<br />
    }</p>
<p>and my change, making the whole order and quote objects data available to sussess page:</p>
<p>    /**<br />
     * Get last order ID from session, fetch it and check whether it can be viewed, printed etc<br />
     */<br />
    protected function _prepareLastOrder()<br />
    {<br />
        $orderId = Mage::getSingleton(&#8216;checkout/session&#8217;)-&gt;getLastOrderId();<br />
        if ($orderId) {<br />
            $order = Mage::getModel(&#8216;sales/order&#8217;)-&gt;load($orderId);<br />
            if ($order-&gt;getId()) {<br />
                $isVisible = !in_array($order-&gt;getState(),<br />
                    Mage::getSingleton(&#8216;sales/order_config&#8217;)-&gt;getInvisibleOnFrontStates());<br />
                	$quote = mage::getModel(&#8216;sales/quote&#8217;)-&gt;load($order-&gt;getQuoteId());<br />
                	$this-&gt;addData(array(<br />
                    &#8216;is_order_visible&#8217; =&gt; $isVisible,<br />
                    &#8216;view_order_id&#8217; =&gt; $this-&gt;getUrl(&#8216;sales/order/view/&#8217;, array(&#8216;order_id&#8217; =&gt; $orderId)),<br />
                    &#8216;print_url&#8217; =&gt; $this-&gt;getUrl(&#8216;sales/order/print&#8217;, array(&#8216;order_id&#8217;=&gt; $orderId)),<br />
                    &#8216;can_print_order&#8217; =&gt; $isVisible,<br />
                    &#8216;can_view_order&#8217;  =&gt; Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;isLoggedIn() &amp;&amp; $isVisible,<br />
                    &#8216;order_id&#8217;  =&gt; $order-&gt;getIncrementId(),<br />
                	&#8216;order_object&#8217; =&gt; $order,<br />
                    &#8216;quote_object&#8217; =&gt; $quote,<br />
                ));<br />
            }<br />
        }<br />
    }</p>
<p>thus in template you can use : $this-&gt;getOrderObject()-&gt;getGrandTotal() as one example.</p>
<p>Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getprice Sales Tracking On Magento by Todd</title>
		<link>http://blog.adelaidecartridge.com/getprice-sales-tracking-on-magento/#comment-201</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Wed, 03 Nov 2010 05:35:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=202#comment-201</guid>
		<description>Hi Did you ever close this out? Im trying to add the tracking code to our website www.sparesplanet.com.au and struggling a little.</description>
		<content:encoded><![CDATA[<p>Hi Did you ever close this out? Im trying to add the tracking code to our website <a href="http://www.sparesplanet.com.au" rel="nofollow">http://www.sparesplanet.com.au</a> and struggling a little.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento get attribute option values by aparadekto</title>
		<link>http://blog.adelaidecartridge.com/magento-get-attribute-option-values/#comment-181</link>
		<dc:creator>aparadekto</dc:creator>
		<pubDate>Tue, 26 Oct 2010 08:49:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=193#comment-181</guid>
		<description>Hey, I can&#039;t view your site properly within Opera, I actually hope you look into fixing this.</description>
		<content:encoded><![CDATA[<p>Hey, I can&#8217;t view your site properly within Opera, I actually hope you look into fixing this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Magento get attribute option values by fenderbirds</title>
		<link>http://blog.adelaidecartridge.com/magento-get-attribute-option-values/#comment-163</link>
		<dc:creator>fenderbirds</dc:creator>
		<pubDate>Mon, 18 Oct 2010 16:35:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/?p=193#comment-163</guid>
		<description>nice article, keep the posts coming</description>
		<content:encoded><![CDATA[<p>nice article, keep the posts coming</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dict by James</title>
		<link>http://blog.adelaidecartridge.com/dict/#comment-155</link>
		<dc:creator>James</dc:creator>
		<pubDate>Fri, 15 Oct 2010 00:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/#comment-155</guid>
		<description>Hi Verity:

I will prepare the cartridge and invoice to Samuel Sunday.
It&#039;s very nice to view your comments on the internet.</description>
		<content:encoded><![CDATA[<p>Hi Verity:</p>
<p>I will prepare the cartridge and invoice to Samuel Sunday.<br />
It&#8217;s very nice to view your comments on the internet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dict by Verity Edgecombe</title>
		<link>http://blog.adelaidecartridge.com/dict/#comment-154</link>
		<dc:creator>Verity Edgecombe</dc:creator>
		<pubDate>Fri, 15 Oct 2010 00:06:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.adelaidecartridge.com/#comment-154</guid>
		<description>Hi James
I&#039;m Samuel Luke&#039;s sister. He said you sell cartridges. I have a Canon MP 980 printer and need new cartridges for all colours especially the blacks. Can you help me with this?
I live at Balhannah but happy if you give them to Samuel Sunday and he drop them up to me on his way to work Monday (goes past)
Thanks 
Verity Edgecombe</description>
		<content:encoded><![CDATA[<p>Hi James<br />
I&#8217;m Samuel Luke&#8217;s sister. He said you sell cartridges. I have a Canon MP 980 printer and need new cartridges for all colours especially the blacks. Can you help me with this?<br />
I live at Balhannah but happy if you give them to Samuel Sunday and he drop them up to me on his way to work Monday (goes past)<br />
Thanks<br />
Verity Edgecombe</p>
]]></content:encoded>
	</item>
</channel>
</rss>

