<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Magento Coder</title>
	<link>http://magentocoder.jigneshpatel.co.in</link>
	<description>hacks &#38; solutions for Magento Ecommerce development</description>
	<lastBuildDate>Sun, 19 Jun 2011 16:13:55 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.1.2" -->

	<item>
		<title>Magento &#8211; Add custom comment box to each product in Cart</title>
		<description><![CDATA[Are you looking for the solution i.e. customer can provide their inputs or comments along with the products they are going to order. To make it easier, one way is to allow them enter the comments for each individual item they order. On the other hand, admin should be able to view the comment on the order page. Adding a custom comment box for each item in the cart is actually very easy. First lets [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/magento-add-comment-box-to-each-product-in-cart/</link>
			</item>
	<item>
		<title>Magento 1.4.1 &#8211; Onepage checkout Paypal WPP bug</title>
		<description><![CDATA[Magento 1.4.1 having some issues, when using Paypal WPP payment method. It does not work properly when you press Continue even after you have put the card details correctly. As a solution, I replaced the version of file below from Magento 1.4.0 to Magento 1.4.1 js/prototype/validation.js Also disabled the Centinel Validation by commenting the line below in file : app/code/core/Mage/Payment/Model/Method/Cc.php this-&#62;getCentinelValidator()-&#62;validate($this-&#62;getCentinelValidationData());]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/magento-1-4-1-onepage-checkout-paypal-wpp-bug/</link>
			</item>
	<item>
		<title>Magento &#8211; Fatal error: Maximum execution time of 60 seconds exceeded in &#8230;</title>
		<description><![CDATA[Have you ever encountered the following kind of error while installing Magento 1.4 ? Fatal error: Maximum execution time of 120 seconds exceeded in... To fix it, open your php.ini and replace the value for &#8216;max_execution_time&#8217; and &#8216;max_input_time&#8217; as per below. max_execution_time = 3600 max_input_time = 3600]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/magento-fatal-error-maximum-execution-time-of-60-seconds-exceeded-in/</link>
			</item>
	<item>
		<title>How to add a new body class to Magento layout</title>
		<description><![CDATA[Adding a CSS body class to Magento layouts seems very easy. In case you want different CSS body class for different module pages on frontend, what you need to do is to find the syntax: $this->loadLayout(); in module controller files and add some new lines just below it. Example: I want to set the &#8216;my-profile&#8217; class to all the customer pages on frontend. So I opened the AccountController.php &#038; edited the function indexAction(). Just below [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/how-to-add-a-new-body-class-to-magento-layout/</link>
			</item>
	<item>
		<title>Adding a new Page Layout to Magento</title>
		<description><![CDATA[Adding a new page layout in Magento is very simple. But why someone need to add a new page layout. Page layouts are already there. Well, that can be needed specially for a Home page. One of my friend faced many issues in managing the Home page with existing layout. As a result, he needed to write other codes as well to maintain the concurrency between other pages. If we do change in current layout, [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/adding-a-new-page-layout-to-magento/</link>
			</item>
	<item>
		<title>Add to Cart with custom attributes &amp; values</title>
		<description><![CDATA[I want to display the custom price on the Shopping Cart page. By default if you add to cart the product it will take the price &#038; will show that price on the cart page. The data on the cart page is coming from the table &#8216;sales_flat_quote_item&#8217;. This table is having lot many fields. Some of them are product_id, name, description, qty, price. Those are the fields which basically reflects on the cart page. My [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/add-to-cart-with-custom-attributes-values/</link>
			</item>
	<item>
		<title>Create custom Reports in Magento Admin</title>
		<description><![CDATA[Want to create a custom report in Magento Admin? After taking help from some forums &#38; all I was able to generate a new Report the way I wanted. I was looking to generate the Report for the Products sold along with the name of the Artist to whom the product belongs to. These are the steps to be followed / I followed. 1. The title of the report is: &#8216;Artist Sold Works&#8217;. To add [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/create-custom-reports-in-magento-admin/</link>
			</item>
	<item>
		<title>Magento Redirection loop problem after installing SSL</title>
		<description><![CDATA[On one of the Magento based project, I am working on I was facing lot many issues after having SSL on Godaddy hosting. Godaddy hosting is always having issues. The biggest problem was, one page checkout page was getting infinite redirection loops. So it was not opening anyhow. The solution was in Magento Admin only: System -&#62; Configuration -&#62; Web. Disable everything under the &#8216;Session Validation Settings&#8217; box.]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/magento-redirection-loop-problem-after-installing-ssl/</link>
			</item>
	<item>
		<title>Automated quick simple product creation in Magento</title>
		<description><![CDATA[Creating the Associated Products for the configurable products in Magento is very easy, the way it can be in Admin panel. You just need to fill the values in &#8216;Quick simple product creation&#8217; box &#38; press &#8216;Quick create&#8217; button. However, if you want to create big amount of simple products, its painful to fill the form every time. In my case, I had to create simple product for the T-shirt. I have to choose the [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/automated-quick-simple-product-creation-in-magento/</link>
			</item>
	<item>
		<title>Add custom input fields on Admin html forms in Magento</title>
		<description><![CDATA[Adding a custom input type on the forms on Admin html is very easy. I used this in the module which I created with Module Creator. I supposed to show the uploaded image on the edit form on Admin. The images are uploaded by the user from the front end. For displaying the thumbnail, by default there is no way in Magento. So I created a new class &#8216;Varien_Data_Form_Element_Thumbnail&#8217; &#38; named it Thumbnail.php. class Varien_Data_Form_Element_Thumbnail [...]]]></description>
		<link>http://magentocoder.jigneshpatel.co.in/add-custom-input-fields-on-admin-html-in-magento/</link>
			</item>
</channel>
</rss>

