<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Magento development</title>
	<link>http://www.ecommerceoffice.com</link>
	<description>Magento development, programming, custom modules and store setup!</description>
	<lastBuildDate>Wed, 11 Apr 2012 23:22:06 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.2.1" -->

	<item>
		<title>Magento In Maintenance Mode</title>
		<description><![CDATA[So here is a little bit of code, that allows you and other you set to work on the site while everyone else sees its maintenance mode. All we need to do it edit 3 lines. Open: index.php in root and above line 57 add (remembering to edit the ‘allowed’ array to contain the IP’s [...]]]></description>
		<link>http://www.ecommerceoffice.com/magento-in-maintenance-mode-2/</link>
			</item>
	<item>
		<title>How To Get Child Product Of Configurable Product In Magento</title>
		<description><![CDATA[To get child product of configrable product. Firstly we need parent product id to load product and to get child products we need to call getUsedProducts() function to get child products. $product = Mage::getModel('catalog/product')-&#62;load($product_id); $childProducts = Mage::getModel('catalog/product_type_configurable')-&#62;getUsedProducts(null,$product);]]></description>
		<link>http://www.ecommerceoffice.com/how-to-get-child-product-of-configurable-product-in-magento-2/</link>
			</item>
	<item>
		<title>Opening Compare Items Page In a Nice Pop-Up In Magento</title>
		<description><![CDATA[To open compare item page in modal window we need to edit file &#8216;sidebar.phtml&#8217; path given below template/catalog/product/compare/sidebar.phtml add the following js at the end of sidebar.phtml &#60;script type=&#34;text/javascript&#34;&#62;// &#60;![CDATA[ function showCompare(url) { winCompare = new Window({className:'magento',title:'Compare Products',url:url,width:820,height:600,minimizable:false,maximizable:false,showEffectOptions:{duration:0.4},hideEffectOptions:{duration:0.4}}); winCompare.setZIndex(100); winCompare.showCenter(true); } // ]]&#62;&#60;/script&#62; we also need to edit like &#60;button class=&#34;button&#34; title=&#34;&#60;?php echo $this-&#62;__('Compare') ?&#62;&#34; [...]]]></description>
		<link>http://www.ecommerceoffice.com/opening-compare-items-page-in-a-nice-pop-up-in-magento-2/</link>
			</item>
	<item>
		<title>How To Display Product Custom Option On list.phtml</title>
		<description><![CDATA[Some time we need to display custom option of product on category list page to achive this task we only need to paste the code given below in your list.phtml file $productSku = $_product-&#62;getSku(); $product = Mage::getModel('catalog/product'); $productId = $product-&#62;getIdBySku( $productSku ); $product = Mage::getModel(&#34;catalog/product&#34;)-&#62;load($productId); $attVal = $product-&#62;getOptions(); $optStr = &#34;&#34;; // loop through the [...]]]></description>
		<link>http://www.ecommerceoffice.com/how-to-display-product-custom-option-on-list-phtml-2/</link>
			</item>
	<item>
		<title>Add a language pack In Magento store view</title>
		<description><![CDATA[Creating a store view for a language is not too hard in magento follow the steps given below and you are done with it. Step 1: Download the language pack you need and then unpack it to your Magento install folder. It copies two folders: one goes to app\design\frontend\default\default\locale and the other one to app\locale. [...]]]></description>
		<link>http://www.ecommerceoffice.com/add-a-language-pack-in-magento-store-view-2/</link>
			</item>
	<item>
		<title>Remove Credit Card Information From Sales Email In Magento</title>
		<description><![CDATA[Magento sends the credit card number openly by email, which is not secured at all. Here is how we can remove it. Step 1: Open the file app/design/frontend/default/your_theme/template/payment/info/cc.phtml Step 2: Find the lines that read: &#60;?php echo $this-&#62;__('Credit Card Number: xxxx-%s', $this-&#62;htmlEscape($this-&#62;getInfo()-&#62;getCcLast4())) ?&#62; &#60;?php echo $this-&#62;__('Expiration Date: %s/%s', $this-&#62;htmlEscape($this-&#62;getCcExpMonth()), $this-&#62;htmlEscape($this-&#62;getInfo()-&#62;getCcExpYear())) ?&#62; Step 3: Comment this [...]]]></description>
		<link>http://www.ecommerceoffice.com/remove-credit-card-information-from-sales-email-in-magento-2/</link>
			</item>
	<item>
		<title>Add comment box to each product in Magento Cart</title>
		<description><![CDATA[Adding a custom comment box for each item in the cart is actually very easy. First lets add the textarea field for each item. open file: template/checkout/cart.phtml Add the new heading along with other heading for cart items. &#60;th&#62;&#60;?php echo $this-&#62;__('Comments') ?&#62;&#60;/th&#62; Open file: template/checkout/cart/item/default.phtml Add a new column &#60;td class=&#34;a-center&#34;&#62; &#60;textarea name=&#34;cart[&#60;?php echo $_item-&#62;getId() [...]]]></description>
		<link>http://www.ecommerceoffice.com/add-comment-box-to-each-product-in-magento-cart-2/</link>
			</item>
	<item>
		<title>Organize Product Imges in Magento</title>
		<description><![CDATA[set default base, thumb, small image to first image. If you have multiple images per product from your import, Magento might have set the LAST one as the default base, small, and thumb image for all of your products! This can be an issue if you want the FIRST image to be the default! SQl [...]]]></description>
		<link>http://www.ecommerceoffice.com/organize-product-imges-in-magento-2/</link>
			</item>
	<item>
		<title>Deleting Any Order In Magento with Sql Query</title>
		<description><![CDATA[Megento does not allow to delet orders created, but even sometime we nee to delete orders, for deleting particular order we must know the order id, i.e. we can get order id from magento admin section now execute sql query given below remember change your order id with increment_id. SET @increment_id='43290'; SELECT @order_id:=entity_id FROM sales_order_entity [...]]]></description>
		<link>http://www.ecommerceoffice.com/deleting-any-order-in-magento-with-sql-query-2/</link>
			</item>
	<item>
		<title>How To Increase session timeout to one day In Magento</title>
		<description><![CDATA[In many of my projects faced problem like session timeout in magento i.e. when i am importing products when those are of greater then count 5000 so i came up with the solution given below hope this could help you also Session SQL INSERT INTO core_config_data(path, value) VALUES ('web/cookie/cookie_lifetime', 86400) ON DUPLICATE KEY UPDATE value [...]]]></description>
		<link>http://www.ecommerceoffice.com/how-to-increase-session-timeout-to-one-day-in-magento-2/</link>
			</item>
</channel>
</rss>

