<?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="http://www.the-mage-expert.com/tag/shipment-tracking/feed/" rel="self" type="application/rss+xml" />
	<link>http://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>Adding tracking information to shipment</title>
		<link>http://www.the-mage-expert.com/1141/magento-adding-tracking-information-to-shipment/</link>
		<comments>http://www.the-mage-expert.com/1141/magento-adding-tracking-information-to-shipment/#comments</comments>
		<pubDate>Fri, 25 Aug 2017 05:43:42 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[shipment tracking]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1141</guid>
		<description><![CDATA[Want to add tracking information to an existing Magento shipment? Here is the code you can use: [crayon-69f2a4c455c25/]]]></description>
				<content:encoded><![CDATA[<p>Want to add tracking information to an existing Magento shipment? Here is the code you can use:</p><pre class="crayon-plain-tag">$shipment = $order-&gt;getShipmentsCollection()-&gt;getFirstItem();
$trackingNumber = '12345678';
$track = Mage::getModel('sales/order_shipment_track')
									 -&gt;setShipment($shipment)
									 -&gt;setData('title', 'title')
									 -&gt;setData('number', $trackingNumber)
									 -&gt;setData('carrier_code', 'carrier code')
									 -&gt;setData('order_id', $shipment-&gt;getData('order_id'))
									 -&gt;save();</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/1141/magento-adding-tracking-information-to-shipment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting an orders tracking information</title>
		<link>http://www.the-mage-expert.com/591/magento-getting-orders-tracking-information/</link>
		<comments>http://www.the-mage-expert.com/591/magento-getting-orders-tracking-information/#comments</comments>
		<pubDate>Wed, 29 Jan 2014 09:07:29 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[shipment tracking]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=591</guid>
		<description><![CDATA[Using the following code, you can obtain the tracking information of a Magento order. [crayon-69f2a4c45dc78/]]]></description>
				<content:encoded><![CDATA[<p>Using the following code, you can obtain the tracking information of a Magento order.</p>
<p></p><pre class="crayon-plain-tag">$trackingCollection = $order-&gt;getTracksCollection();
$firstItem = $trackingCollection-&gt;getFirstItem();
$trackingNumber = $firstItem-&gt;getNumber();
...</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/591/magento-getting-orders-tracking-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
