<?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>Elias Interactive &#187; Magento Commerce</title>
	<atom:link href="http://www.eliasinteractive.com/blog/tag/magento-commerce/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eliasinteractive.com</link>
	<description>Ecommerce consulting &#38; solutions for online store retailers</description>
	<lastBuildDate>Thu, 01 Sep 2011 18:45:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SVN: Magento Best Practice</title>
		<link>http://www.eliasinteractive.com/blog/a-high-level-business-use-perspective-on-svn/</link>
		<comments>http://www.eliasinteractive.com/blog/a-high-level-business-use-perspective-on-svn/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 07:09:20 +0000</pubDate>
		<dc:creator>Lee Taylor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Best Practices With Magento]]></category>
		<category><![CDATA[Coding With Magento]]></category>
		<category><![CDATA[development tools]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Administration]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento development]]></category>
		<category><![CDATA[Managing A Magento Project]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.eliasinteractive.com/?p=839</guid>
		<description><![CDATA[Who: Anyone who works with Magento (especially clients who are running a store) and could benefit from a more in-depth understanding of Magento best practices. What: SVN and Magento (a sweet relationship) Why: Because whether you are a client or a developer, your life can be made easier by using &#8230; <a href="http://www.eliasinteractive.com/blog/a-high-level-business-use-perspective-on-svn/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Who:</strong> Anyone who works with Magento (especially clients who are running a store) and could benefit from a more in-depth understanding of Magento best practices.<br />
<strong>What:</strong> SVN and Magento (a sweet relationship)<br />
<strong>Why:</strong> Because whether you are a client or a developer, your life can be made easier by using SVN and reaping its benefits</p>
<p><strong>Quick Summary</strong>:</p>
<ol>
<li> High-level explanation of SVN</li>
<li>Who should use SVN</li>
<li>Why it should be used</li>
<li>Specific things to watch out for with Magento</li>
<li>Bonus: optional tools</li>
</ol>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-843" title="SVN-Environment Relationships" src="http://www.eliasinteractive.com/wp-content/uploads/2009/11/magento_admin.jpg" alt="SVN-Environment Relationships" width="500" height="600" /></p>
<h2>1. A high-level explanation SVN</h2>
<p>“<a href="http://subversion.tigris.org/">SVN</a>” (aka “Subversion”) changes and improves the development process. It is an “enhancement” to “<a href="http://en.wikipedia.org/wiki/Concurrent_Versions_System">CVS</a>” which allows developers to maintain local, staging, and production environments. This is a best proactive for most software development (and Magento) projects. SVN relates to “<a href="http://git-scm.com/">Git</a>” (though some prefer one more than the other) and is free to use.</p>
<p>Simply put, SVN is a tool that keeps a revision history of code over a period of time. You keep project code located within the repository and pull a copy of the entire code with one simple command (a total of about 6 seconds). In addition, any updates to the code are committed to the repository, which allows anyone who is “linked” to the repository to sync their code with the latest changes via one click of a button. A simultaneous, multi-user environment is thus organized for development and proper administration.</p>
<p>Just to reiterate &#8211; there are an incredible number of benefits to SVN… too many to mention here.</p>
<h2>2. Who should use SVN</h2>
<p>Everyone who works with Magento should use SVN. As a rule of thumb, SVN should be used in any significant software development project (unless you use Git).</p>
<h2>3. Why SVN should be used</h2>
<p>SVN allows multiple developers to build simultaneously in an organized fashion with a detailed history of the progress. This ensures that the live storefront (production environment) is always intricately cared for (read open for business). Every developer has experienced early on in their career the inevitable mistake of removing a file via FTP, only left to realize that file is lost in space and no longer retrievable. But large cocktails are no longer necessary to cope with such an event thanks to SVN. The developer&#8217;s life becomes easier; and the client&#8217;s business is safer. When used properly, SVN ensures reliability, integrity, speed, and fall-back recovery.</p>
<h2>4. Specific things to watch out for with Magento</h2>
<p>In our experience, there are a few specifics to watch out for when using SVN with Magento. Without getting too technical, here are a few things we’ve learned along the way:</p>
<p>+ You need to watch out for the caching within Magento. Utilizing SVN:Ignore is the key to allowing the local environment to cache correctly. I would recommend setting SVN to “ignore” for the following (at least) when maintaining separate environments:</p>
<ul>
<li>app/etc/local.xml (or use SVN lock instead for this)</li>
<li>media/catalog/product/cache</li>
<li>var/</li>
</ul>
<p>+ If you use Beanstalk then you can streamline SVN managing with the &#8220;Deployment&#8221; tool within BeanstalkApp&#8217;s repository storage.</p>
<p>+ Use a test script. We’ve learned the hard way to stick to a quality test script as we merge different branches into the main SVN repository (used for production). Maintain a staging environment and use the test script from every angle prior to going “live” to production with the new changes.</p>
<p>+ For phases of a project, it helps to create a “branch” for each phase and a staging environment for each branch (assuming the project is large enough to call for it). This makes it easier to rollback and merge updates.</p>
<p>+ We prefer to keep the entire Magento directory maintained via a SVN repo. We do this so that we can upgrade, modify, and perform other changes locally prior to streamlining the changes to the staging and production environments.</p>
<h2>5. Bonus: optional tools</h2>
<p>At Elias, we fancy apps that make our lives easier. We invest a lot of time researching and trying out new apps to see how well they fit our business. So far we have found a few SVN tools that are worth mentioning. (Note: these may be Apple-specific. Forgive us):</p>
<ul>
<li><a href="http://versionsapp.com/">VersionsApp</a>: A high-quality desktop application that allows one to manage repositories locally for streamlined management of code.</li>
<li><a href="http://beanstalkapp.com/">BeanstalkApp</a>: A sweet as online SVN storage service to host repositories full of code, revisions, and a great interface for management.</li>
<li><a href="http://www.panic.com/coda/" target="_blank">Coda App</a>: A quality code editor that integrates with SVN</li>
<li><a href="http://macromates.com/" target="_blank">TextMate</a>: Another quality code editor with SVN integration</li>
<li><a href="http://www.mamp.info/" target="_blank">MAMP</a>: A personal Mac server with Apache, Mysql and PHP</li>
<li><a href="http://clickontyler.com/virtualhostx/" target="_blank">VirtualHostX</a>: A virtual hosting utility that works well with MAMP</li>
<li><a href="http://www.virtualbox.org/" target="_blank">VirtualBox</a>: A sweet virtualization product to run multiple operating systems</li>
<li><a href="http://spoon.net/" target="_blank">Spoon.net</a>: A browser-compatibility testing tool we&#8217;re just becoming familiar with</li>
</ul>
<p>Those of you who are already familiar with SVN know that there is obviously much more to rave about. This post is intended to be a simplified “business use-case&#8221; for SVN and explanation of why it is a Magento best practice. We welcome you to chime in with other suggestions for us all to benefit from!
<div id="tweetbutton839" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FjQ96tm&amp;via=tweetelias&amp;text=SVN%3A%20Magento%20Best%20Practice&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fa-high-level-business-use-perspective-on-svn%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/a-high-level-business-use-perspective-on-svn/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Scene7 Integration With Magento eCommerce</title>
		<link>http://www.eliasinteractive.com/blog/part-1-of-4-scene-7-integration-with-magento-ecommerce/</link>
		<comments>http://www.eliasinteractive.com/blog/part-1-of-4-scene-7-integration-with-magento-ecommerce/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:30:07 +0000</pubDate>
		<dc:creator>Lee Taylor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[scene 7]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=600</guid>
		<description><![CDATA[What: Straightforward overview on our approach for integrating Scene 7 with Magento eCommerce. Why: Because Magento rocks and Scene 7 rocks. Together, they can create an inspiring user experience! Who: For the business who desires real interactivity, and for developers who desire to implement Scene 7 capabilities with Magento. We recently &#8230; <a href="http://www.eliasinteractive.com/blog/part-1-of-4-scene-7-integration-with-magento-ecommerce/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>What</strong><strong>:</strong> Straightforward overview on our approach for integrating Scene 7 with Magento eCommerce.</p>
<p><strong>Why:</strong> Because Magento rocks and Scene 7 rocks. Together, they can create an inspiring user experience!</p>
<p><strong>Who:</strong> For the business who desires real interactivity, and for developers who desire to implement Scene 7 capabilities with Magento.</p>
<p><a href="http://67.225.241.61/ei/wp-content/uploads/2009/07/nb_scene7.jpg"><img class="size-medium wp-image-602  alignleft" title="nb_scene7" src="http://67.225.241.61/ei/wp-content/uploads/2009/07/nb_scene7.jpg" alt="" width="224" height="97" /></a></p>
<p>We recently were approach by a company who knew about Scene 7&#8242;s capabilities and they wanted their Magento store to do the following:</p>
<style>
blockquote { background:none; }
</style>
<blockquote><p>1. Replace all product and category images with Scene 7 composited images</p>
<p>2. Allow the user to &#8220;build&#8221; a custom product based off of product options, and reflect the user selections in the product image</p>
<p>3. Create a unique user experience in their Magento store</p></blockquote>
<p>Why could this be useful? Well, take a few minutes to learn more about what Scene 7 and Magento integration can do together. Soon, when the project is completed &#8211; we&#8217;ll have some examples to share.</p>
<p>What was our process in approaching this? Let me give a high-level outline our take on integrating the two systems.</p>
<p><strong>First off</strong>, we looked at how we can utilize Scene 7 url&#8217;s instead of native Magento URLs. So we decided to override the catalog image helper so we could add custom functions to composite the appropriate URLs to build the image via a specified URL string.</p>
<p><strong>Secondly</strong>, we interfaced this custom helper with the Scene 7 backend and some Javascript to build the desired product images. We did this by creating a function inside of the new helper to be able to do all URL string manipulation based off of product options changed by the user on the frontend.</p>
<p><strong>Thirdly</strong>, we went through and determined every theme file that needed modifying to use the function that built the Scene 7 URLs and reflect the composited image.</p>
<p> </p>
<p>As an overview, we took the following approach:</p>
<p>1. Created the right images in Scene 7 to use in correlation with Magento.</p>
<p>2. Created product options in Magento</p>
<p>3. Overlaid JS to the product options to be used as variables within our Helper function</p>
<p>4. Manipulated the URL string and returned the composited URL to build the product image (based off of the user-selected product options)</p>
<p> </p>
<p>The site has yet to go live, though keep in touch with Elias updates and you will see the finished product.
<div id="tweetbutton600" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FiUWtZ4&amp;via=tweetelias&amp;text=Scene7%20Integration%20With%20Magento%20eCommerce&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fpart-1-of-4-scene-7-integration-with-magento-ecommerce%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/part-1-of-4-scene-7-integration-with-magento-ecommerce/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Magento and Scene 7 Integration: 3 Part Series</title>
		<link>http://www.eliasinteractive.com/blog/magento-and-scene-7-integration-4-part-series/</link>
		<comments>http://www.eliasinteractive.com/blog/magento-and-scene-7-integration-4-part-series/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 04:10:42 +0000</pubDate>
		<dc:creator>Lee Taylor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento development]]></category>
		<category><![CDATA[scene 7]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=561</guid>
		<description><![CDATA[Hey All, Here&#8217;s a head&#8217;s up for those interested in Scene 7 integration with Magento. We&#8217;re excited for what Scene 7 brings to the table, and we hope to see it more throughout the Magento community in the near future. In an effort to back that up, we&#8217;re going to &#8230; <a href="http://www.eliasinteractive.com/blog/magento-and-scene-7-integration-4-part-series/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hey All,</p>
<p>Here&#8217;s a head&#8217;s up for those interested in Scene 7 integration with Magento.</p>
<p>We&#8217;re excited for what Scene 7 brings to the table, and we hope to see it more throughout the Magento community in the near future. In an effort to back that up, we&#8217;re going to come out with a 4-part series on a project we recently did to integrate Scene 7 with Magento.</p>
<p>For those interests that are being peaked, feel free to check back with us to catch up on the following:</p>
<style>blockquote {background:none}</style>
<blockquote><p>
1. How we integrated the two (a high-level overview of Magento and Scene 7)</p>
<p>2. How to structure Magento for Scene 7</p>
<p>3. How to structure Scene 7 for Magento</p>
</blockquote>
<p>We&#8217;ll try to keep it as straight-forward and basic as we can, as we&#8217;re very excited to see the Magento community start utilizing Scene 7 more.</p>
<p>Cheers,</p>
<p>Lee
<div id="tweetbutton561" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FkBgQYq&amp;via=tweetelias&amp;text=Magento%20and%20Scene%207%20Integration%3A%203%20Part%20Series&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fmagento-and-scene-7-integration-4-part-series%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/magento-and-scene-7-integration-4-part-series/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Magento Featured Products: A More Convenient Way To Display Featured Products On The Home Page</title>
		<link>http://www.eliasinteractive.com/blog/magento-featured-products-a-more-convenient-way-to-display-featured-products-on-the-home-page/</link>
		<comments>http://www.eliasinteractive.com/blog/magento-featured-products-a-more-convenient-way-to-display-featured-products-on-the-home-page/#comments</comments>
		<pubDate>Tue, 26 May 2009 03:38:30 +0000</pubDate>
		<dc:creator>Lee Taylor</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[featured products]]></category>
		<category><![CDATA[featured products on home page]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento development]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=544</guid>
		<description><![CDATA[About: How To Show / Display Featured Products On The Home Page (Conveniently) Who’s Interested: Informative to the technical gurus What: An alternative direction on how to show featured products on your Magento storefront home page Magento Version Relevance: Any Magento Store Setup: Any My thought: &#8220;Why not let the &#8230; <a href="http://www.eliasinteractive.com/blog/magento-featured-products-a-more-convenient-way-to-display-featured-products-on-the-home-page/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>About:</strong> How To Show / Display Featured Products On The Home Page <strong>(Conveniently)</strong></p>
<p><strong>Who’s Interested:</strong> Informative to the technical gurus<br />
<strong>What:</strong> An alternative direction on how to show featured products on your Magento storefront home page<br />
<strong>Magento Version Relevance:</strong> Any<br />
<strong>Magento Store Setup:</strong> Any</p>
<p><em><strong>My thought:</strong> &#8220;Why not let the Admin choose what products to display on the home page like every other category?&#8221;</em></p>
<p>If you&#8217;ve been involved in the community dialogue that constantly evolves through the Magento boards, you may have run across a topic mainly focused on ways for developers to display featured products on the home page.</p>
<p>There have been many directions taken with this, including the following as only a few to mention:</p>
<ol>
<li>Install a extension and configure</li>
<li>Create an attribute, assign each product a value for that attribute, and then display products based upon the value they contain for that attribute</li>
<li>Use the CMS template code to display a certain category</li>
</ol>
<p>I didn&#8217;t want to override any other solutions, but simply offer another approach &#8211; one that <strong>does not</strong> do the following:</p>
<ul>
<li>Modify any core code</li>
<li>Require per-product management</li>
<li>Install any extension</li>
</ul>
<p>After my review, I still wanted a way that was <strong>more convenient</strong> for our client/administrators to be able to manage the products that display on their home page. Going through each product can become cumbersome, so what if they had one specific category that gets displayed all the time, and any products within it show up on the home page? That&#8217;s what I went for, and came up with the following:</p>
<ol>
<li>Create a new &#8220;structural block&#8221; within Magento (<a href="http://inchoo.net/ecommerce/magento/custom-reference-structural-block/" target="_blank">see example</a>, thanks <a <a href="http://inchoo.net/" target="_blank">Inchoo</a>)</li>
<li>Create a (<em>hidden)</em> category within the Magento Admin</li>
<li>Modify the structural block to display that category in a specific way</li>
<li>Set the Category Id</li>
</ol>
<p>Here are the files/modifications:</p>
<h2>Structural Block</h2>
<ul>
<li>app/design/frontend/*/*/template/catalog/product/featured-products.phtml</li>
</ul>
<pre class="brush: php; title: ; notranslate">
/*
Magento

NOTICE OF LICENSE

This source file is subject to the Academic Free License (AFL 3.0) that is bundled with this package in the file LICENSE_AFL.txt. It is also available through the world-wide-web at this URL:

http://opensource.org/licenses/afl-3.0.php

If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@magentocommerce.com so we can send you a copy immediately.

DISCLAIMER

Do not edit or add to this file if you wish to upgrade Magento to newer versions in the future. If you wish to customize Magento for your needs please refer to http://www.magentocommerce.com for more information.

@category   design_default
@package    Mage
@copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
@license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

&lt;?php
/*
Product list template

@see Mage_Catalog_Block_Product_List
*/
?&gt;

&lt;?php //$_productCollection=$this-&gt;getLoadedProductCollection()

//var_dump($cModel); echo $cModel-&gt;getName(); die;

$cat_id = &quot;7&quot;; // category_id for &quot;Featured Products&quot;
$_productCollection = Mage::getResourceModel('catalog/product_collection')
-&gt;addAttributeToSelect(array('name', 'price', 'small_image'), 'inner')
-&gt;addCategoryFilter(Mage::getModel('catalog/category')-&gt;load($cat_id));

?&gt;

&lt;?php if(!$_productCollection-&gt;count()): ?&gt;
&lt;div class=&quot;padder&quot;&gt;
&lt;div class=&quot;note-msg&quot;&gt;
&lt;?php echo $this-&gt;__('There are no products matching the selection.') ?&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php else: ?&gt;

&lt;? // Removed List Mode ?&gt;

&lt;?php // Grid Mode ?&gt;
&lt;?php $_iterator = 0; ?&gt;
&lt;?php $_collectionSize = $_productCollection-&gt;count() ?&gt;
&lt;?php //var_dump($_productCollection-&gt;count()); ?&gt;
&lt;div class=&quot;listing-type-list catalog-listing padder&quot;&gt;
&lt;table cellspacing=&quot;0&quot; class=&quot;generic-product-grid&quot; id=&quot;product-list-table&quot;&gt;
&lt;?php $i=0; foreach ($_productCollection as $_product): ?&gt;
&lt;?php if ($i++%2==0): ?&gt;
&lt;tr&gt;
&lt;?php endif ?&gt;
&lt;td&gt;
&lt;p class=&quot;product-image&quot;&gt;
&lt;a href=&quot;&lt;?php echo $_product-&gt;getProductUrl() ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;htmlEscape($this-&gt;getImageLabel($_product, 'small_image')) ?&gt;&quot;&gt;
&lt;img src=&quot;&lt;?php echo $this-&gt;helper('catalog/image')-&gt;init($_product, 'small_image')-&gt;resize(95, 95); ?&gt;&quot; alt=&quot;&lt;?php echo $this-&gt;htmlEscape($this-&gt;getImageLabel($_product, 'small_image')) ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;htmlEscape($this-&gt;getImageLabel($_product, 'small_image')) ?&gt;&quot; /&gt;
&lt;/a&gt;
&lt;h5&gt;&lt;a href=&quot;&lt;?php echo $_product-&gt;getProductUrl() ?&gt;&quot; title=&quot;&lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt;&quot;&gt;&lt;?php echo $this-&gt;htmlEscape($_product-&gt;getName()) ?&gt;&lt;/a&gt;&lt;/h5&gt;
&lt;?php //echo $this-&gt;getPriceHtml($_product, true) ?&gt;

&lt;/p&gt;
&lt;/td&gt;
&lt;?php if ($i%2==0 	&amp;#37; $i!=$_collectionSize): ?&gt;
&lt;/tr&gt;
&lt;?php endif ?&gt;
&lt;?php endforeach ?&gt;
&lt;?php for($i;$i%2!=0;$i++): ?&gt;
&lt;td class=&quot;empty-product&quot;&gt;	&amp;#37;&lt;/td&gt;
&lt;?php endfor ?&gt;
&lt;?php if ($i%2==0): ?&gt;
&lt;/tr&gt;
&lt;?php endif ?&gt;
&lt;/table&gt;
&lt;script type=&quot;text/javascript&quot;&gt;decorateTable('product-list-table')&lt;/script&gt;
&lt;/div&gt;

&lt;?php endif; ?&gt;
</pre>
<ul>
<li>app/design/frontend/*/*/template/cms/home.phtml (modify path/to/your/cms/page/home.phtml to be specific to your needs)</li>
</ul>
<pre class="brush: php; title: ; notranslate">
&lt;?php //Home Page View ?&gt; &lt;div&gt;
&lt;?php //display featured products ?&gt;
&lt;?php echo $this-&gt;getChildHtml('featured.products') ?&gt;
&lt;/div&gt;
</pre>
<ul>
<li>app/design/frontend/*/*/layout/page/page.xml</li>
</ul>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;layout version=&quot;0.1.0&quot;&gt;
&lt;!-- Default layout, loads most of the pages --&gt;
&lt;!-- Insert into existing page.xml file, do not replace this with your current file --&gt;
&lt;default&gt;
&lt;block type=&quot;core/text_list&quot; name=&quot;featured.products&quot; as=&quot;featured.products&quot;/&gt;
&lt;/default&gt;
&lt;/layout&gt;
</pre>
<h2>Create new Category</h2>
<p>This ccould be called &#8220;Featured Products&#8221;) and set the Admin-&gt;Catalog-&gt;Manage Categories-&gt;specificCategoryName-&gt;General Information-&gt;&#8221;Is Active&#8221; = &#8220;No&#8221;.</p>
<h2>Display structural block</h2>
<p>Either via CMS page or .phtml page through the CMS page:<br />
<em>(modify path/to/your/cms/page/home.phtml to be specific to your needs)</em></p>
<ul>
<li>CMS Page: {{block type=&#8221;core/template&#8221; template=&#8221;path/to/your/cms/page/home.phtml&#8221;}}</li>
<li>.phtml page: inside CMS page-&gt;Custom Design:</li>
</ul>
<pre class="brush: xml; title: ; notranslate">
&lt;reference name=&quot;content&quot;&gt;
&lt;remove name=&quot;cms_page&quot; /&gt;
&lt;block name=&quot;home_page&quot; type=&quot;core/template&quot; template=&quot;path/to/your/cms/page/home.phtml&quot;&gt;
&lt;block name=&quot;featured.products&quot; type=&quot;catalog/product_list&quot; template=
&quot;catalog/product/featured-products.phtml&quot; /&gt;
&lt;/block&gt;
&lt;/reference&gt;
&lt;reference name=&quot;root&quot;&gt;
&lt;action method=&quot;setTemplate&quot;&gt;
&lt;template&gt;page/1column.phtml&lt;/template&gt;
&lt;/action&gt;
&lt;/reference&gt;
</pre>
<h2>Set Your Category Id</h2>
<p>Now you should be able to checkout the code in the featured-products.phtml, and match the &#8220;7&#8243; to your actual product category id. (see category id within the Admin-&gt;Catalog-&gt;Manage Categories-&gt;Your Category).</p>
<p><a href="http://www.eliasinteractive.com/wp-content/uploads/2009/05/featured-productsphtml1.png"><img class="aligncenter size-full wp-image-550" title="featured-productsphtml1" src="http://www.eliasinteractive.com/wp-content/uploads/2009/05/featured-productsphtml1.png" alt="" width="500" height="131" /></a><a href="http://www.eliasinteractive.com/wp-content/uploads/2009/05/featured-productsphtml.png"></a><br />
<strong>Now, any product inside that category gets displayed on the home page!</strong></p>
<p>Please feel free to <a href="http://www.eliasinteractive.com/wp-content/uploads/2009/05/elias-featured-products-tutorial-files.zip">download the structural block files</a> and place into your theme structure relative to the root Magento directory.</p>
<p>And take a look at the site we&#8217;ve used it on with our client, <a href="http://keramikoskitchen.com/" target="_blank">Keramikos Kitchen</a>.</p>
<p>Let us know your thoughts!</p>
<p>Appreciative,<br />
Lee
<div id="tweetbutton544" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FlAt9v0&amp;via=tweetelias&amp;text=Magento%20Featured%20Products%3A%20A%20More%20Convenient%20Way%20To%20Display%20Featured%20Products%20On%20The%20Home%20Page&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fmagento-featured-products-a-more-convenient-way-to-display-featured-products-on-the-home-page%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/magento-featured-products-a-more-convenient-way-to-display-featured-products-on-the-home-page/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>How to Automate Inventory Alerts via Email using Magento &amp; Mailchimp</title>
		<link>http://www.eliasinteractive.com/blog/how-to-automate-inventory-alerts-via-email-using-magento-mailchimp/</link>
		<comments>http://www.eliasinteractive.com/blog/how-to-automate-inventory-alerts-via-email-using-magento-mailchimp/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:31:32 +0000</pubDate>
		<dc:creator>Josh Colter</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento ecommerce]]></category>
		<category><![CDATA[magento email]]></category>
		<category><![CDATA[magento inventory alert]]></category>
		<category><![CDATA[magento inventory alerts]]></category>
		<category><![CDATA[magento inventory rss]]></category>
		<category><![CDATA[mailchimp magento]]></category>
		<category><![CDATA[modify magento]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=538</guid>
		<description><![CDATA[Ben from Mailchimp.com posted an interesting idea yesterday: Magento&#8216;s native RSS capability + Mailchimp&#8217;s RSS-to-email feature = automated inventory alerts via email. Genius! Tweet]]></description>
			<content:encoded><![CDATA[<p>Ben from Mailchimp.com <a href="http://www.mailchimp.com/blog/automatic-inventory-alerts-by-email/" target="_blank">posted an interesting idea</a> yesterday:</p>
<p><a href="http://www.magentocommerce.com/" target="_blank">Magento</a>&#8216;s native RSS capability + <a href="http://www.mailchimp.com/features/power_features/rss/" target="_blank">Mailchimp&#8217;s RSS-to-email feature</a> = automated inventory alerts via email.</p>
<p>Genius!
<div id="tweetbutton538" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FlOT9E7&amp;via=tweetelias&amp;text=How%20to%20Automate%20Inventory%20Alerts%20via%20Email%20using%20Magento%20%26amp%3B%20Mailchimp&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fhow-to-automate-inventory-alerts-via-email-using-magento-mailchimp%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/how-to-automate-inventory-alerts-via-email-using-magento-mailchimp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Product Image Sizing for Magento</title>
		<link>http://www.eliasinteractive.com/blog/product-image-sizing-for-magento/</link>
		<comments>http://www.eliasinteractive.com/blog/product-image-sizing-for-magento/#comments</comments>
		<pubDate>Mon, 11 May 2009 15:24:00 +0000</pubDate>
		<dc:creator>Josh Colter</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[customize magento]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento image]]></category>
		<category><![CDATA[magento image size]]></category>
		<category><![CDATA[magento image zoom]]></category>
		<category><![CDATA[magento images]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=531</guid>
		<description><![CDATA[During the recent launch of Keramikoskitchen.com, our client, Naseem Jarjoura, wanted to allow for product images to be enlarged when double-clicked.  For some reason the image would just not load correctly so that it fit within its allotted area correctly.  Here is an example of what Naseem wanted to do: &#8230; <a href="http://www.eliasinteractive.com/blog/product-image-sizing-for-magento/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>During the recent launch of <a href="http://keramikoskitchen.com/" target="_blank">Keramikoskitchen.com</a>, our client, Naseem Jarjoura, wanted to allow for product images to be enlarged when double-clicked.  For some reason the image would just not load correctly so that it fit within its allotted area correctly.  Here is an example of what Naseem wanted to do:</p>
<p><a href="http://www.keramikoskitchen.com/ceramic-knives/5-piece-black-on-black-ceramic-knife-set.html"><img class="aligncenter size-medium wp-image-532" title="picture-5" src="http://eliasinteractive.com/wp-content/uploads/2009/05/picture-5-300x255.png" alt="" width="300" height="255" /></a></p>
<p>When you double click on the knife set, then you get this enlarged image:</p>
<p><a href="http://67.225.241.61/ei/wp-content/uploads/2009/05/picture-6.png"><img class="aligncenter size-medium wp-image-533" title="Enlarged Knife Set Picture" src="http://eliasinteractive.com/wp-content/uploads/2009/05/picture-6-300x289.png" alt="" width="300" height="289" /></a></p>
<p>Images need to be sized specifically according to their Magento store location in order to pull this off. Here is what Naseem had to say:</p>
<blockquote><p>In order to achieve the best results the <em>image should be sized to 600 x 600.</em> This size allows for a centered image, zoom functionality and click to enlarge is not overblown. If you notice in the knife sets I incorporated into the art a “click here to close”. Simple solution for people that can’t figure out how to close the screen.</p></blockquote>
<div id="tweetbutton531" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FlOqkuT&amp;via=tweetelias&amp;text=Product%20Image%20Sizing%20for%20Magento&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fproduct-image-sizing-for-magento%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/product-image-sizing-for-magento/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Elias services spotlight &#8211; Data Migration</title>
		<link>http://www.eliasinteractive.com/blog/elias-services-spotlight-dat/</link>
		<comments>http://www.eliasinteractive.com/blog/elias-services-spotlight-dat/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 18:05:23 +0000</pubDate>
		<dc:creator>Eric Clark</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento data migration]]></category>
		<category><![CDATA[magento database]]></category>
		<category><![CDATA[magento services]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/blog/elias-services-spotlight-dat/</guid>
		<description><![CDATA[Elias services spotlight &#8211; Data Migration. Need help migrating your existing store to Magento? Whether your database is large or small, we can help! Get in touch or call (888) 345-0887. Tweet]]></description>
			<content:encoded><![CDATA[<p>Elias services spotlight &#8211; Data Migration. Need help migrating your existing store to Magento? Whether your database is large or small, we can help! <a href="http://eliasinteractive.com/home/elias-project-quote-form/">Get in touch</a> or call (888) 345-0887.
<div id="tweetbutton572" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fl6eggE&amp;via=tweetelias&amp;text=Elias%20services%20spotlight%20%26%238211%3B%20Data%20Migration&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Felias-services-spotlight-dat%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/elias-services-spotlight-dat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wanted: Crazy Developer</title>
		<link>http://www.eliasinteractive.com/blog/wanted-crazy-developer/</link>
		<comments>http://www.eliasinteractive.com/blog/wanted-crazy-developer/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 01:36:51 +0000</pubDate>
		<dc:creator>Josh Colter</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[customize magento]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento developer]]></category>
		<category><![CDATA[magento developers]]></category>
		<category><![CDATA[magento ecommerce]]></category>
		<category><![CDATA[magento modification]]></category>
		<category><![CDATA[modify magento]]></category>
		<category><![CDATA[php developers]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=511</guid>
		<description><![CDATA[Braveheart was on this afternoon.  One of my favorite scenes is when Wallace and his men first meet the crazy Irishman.  Two guys show up in the woods to join a movement.  One is normal, well-spoken, and blends in initially.  He even presents a present to Wallace&#8230;how thoughtful.  The other &#8230; <a href="http://www.eliasinteractive.com/blog/wanted-crazy-developer/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.youtube.com/watch?v=-pwPlZEA-Aw&amp;feature=related"><img class="size-medium wp-image-513 aligncenter" title="Wanted: Crazy Developers" src="http://eliasinteractive.com/wp-content/uploads/2009/04/picture-41-300x168.png" alt="" width="300" height="168" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">Braveheart was on this afternoon.  One of my <a href="http://www.youtube.com/watch?v=-pwPlZEA-Aw&amp;feature=related" target="_blank">favorite scenes</a> is when Wallace and his men first meet the crazy Irishman.  Two guys show up in the woods to join a movement.  One is normal, well-spoken, and blends in initially.  He even presents a present to Wallace&#8230;how thoughtful.  The other guy is crazy.  He puts a knife to someone&#8217;s throat (immediately pointing out a lapse in security).  The next scene plays out with an unanticipated twist: the crazy guy saves Wallace&#8217;s life from the normal guy&#8217;s assassination attempt.</p>
<p style="text-align: left;">At Elias we could use a few developers to help us grow.  We are looking for the crazy loyal type, not the nice stab-you-in-the-back type.  Do you have an island?</p>
<div id="tweetbutton511" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FiiRkXW&amp;via=tweetelias&amp;text=Wanted%3A%20Crazy%20Developer&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fwanted-crazy-developer%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/wanted-crazy-developer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Implementing Zoho to Manage Client Relationships</title>
		<link>http://www.eliasinteractive.com/blog/implementing-zoho-to-manage-client-relationships/</link>
		<comments>http://www.eliasinteractive.com/blog/implementing-zoho-to-manage-client-relationships/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 02:50:02 +0000</pubDate>
		<dc:creator>Josh Colter</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[customize magento]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento customization]]></category>
		<category><![CDATA[magento developer]]></category>
		<category><![CDATA[magento development]]></category>
		<category><![CDATA[magento ecommerce]]></category>
		<category><![CDATA[magento modification]]></category>
		<category><![CDATA[modify magento]]></category>
		<category><![CDATA[small business CRM]]></category>
		<category><![CDATA[zoho]]></category>
		<category><![CDATA[zohoCRM]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=507</guid>
		<description><![CDATA[This weekend we switched to a new CRM system here at Elias.  I evaluated several different options including Salesforce.com and Highrise before ultimately selecing ZohoCRM.  It seemed like every system I looked at either was too simple or too expensive.  Geez. I sound like stinkin&#8217; Goldie Locks. Since we are &#8230; <a href="http://www.eliasinteractive.com/blog/implementing-zoho-to-manage-client-relationships/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-506" title="Zoho logo" src="http://67.225.241.61/ei/wp-content/uploads/2009/03/picture-1.png" alt="" width="157" height="66" /> This weekend we switched to a new CRM system here at Elias.  I evaluated several different options including <a href="http://www.salesforce.com/" target="_blank">Salesforce.com</a> and <a href="http://www.highrisehq.com/?source=37signals+home" target="_blank">Highrise</a> before ultimately selecing <a href="http://www.zoho.com/" target="_blank">ZohoCRM</a>.  It seemed like every system I looked at either was too simple or too expensive.  Geez. I sound like stinkin&#8217; Goldie Locks.</p>
<p>Since we are small, every penny counts and every minute saved is valuable to us.  Our objective was to create a form on our website where new potential clients can submit a request for more information.  We have been slammed lately with currect clients (a good thing), but feel like we are not able to be as responsive as we would like to be with people who are trying to make a decision on who to use for their <a href="http://www.magentocommerce.com/" target="_blank">Magento</a> ecommerce installation and Magento customization (a bad thing).  A CRM tool was desperately needed in order to collect the new contacts, file them in on-demand software, trigger an immediate email to let them know we will follow up soon, and send a notification email to me with the info that they filled out on the form.  Turns out this was harder to find than I expected.  Enter Zoho.</p>
<p>Other companies out there do this sort of thing, <a href="http://www.zoho.com/pricing.html" target="_blank">Zoho just does it for $25/month/user</a>.  So far I have customized the lead fields, mapped them to a form, and pasted the HTML to our &#8220;Request a Quote&#8221; landing page.  Also, the software is set to automatically send me an email with the completed fields and create a follow up task due the next day (screenshot of admin below).  Next week I plan to set up the triggered email response to the interested client.</p>
<p><img class="alignnone size-medium wp-image-508" title="picture-3" src="http://eliasinteractive.com/wp-content/uploads/2009/03/picture-3-300x201.png" alt="" width="386" height="258" /></p>
<p>Hopefully this is helpful to you if you are looking for a CRM application.  It would be interesting to know what everyone else is using to manage their client relationships and why they selected it.  Anyone have a better find than Zoho?
<div id="tweetbutton507" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2FjvXe3t&amp;via=tweetelias&amp;text=Implementing%20Zoho%20to%20Manage%20Client%20Relationships&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Fimplementing-zoho-to-manage-client-relationships%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/implementing-zoho-to-manage-client-relationships/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Review of Magento: Open Source Powerhouse</title>
		<link>http://www.eliasinteractive.com/blog/review-of-magento-open-source-powerhouse/</link>
		<comments>http://www.eliasinteractive.com/blog/review-of-magento-open-source-powerhouse/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 21:55:36 +0000</pubDate>
		<dc:creator>Josh Colter</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Magento Commerce]]></category>
		<category><![CDATA[magento installation]]></category>
		<category><![CDATA[modify magento]]></category>

		<guid isPermaLink="false">http://eliasinteractive.com/?p=441</guid>
		<description><![CDATA[Practical eCommerce author Armando Roggio posted a review of Magento&#8217;s eCommerce platform last month.  The video critique is below.  Here are a few summary points: A few very cool Magento features: Add-to-compare Faceted navigation discovery Zoom feature Multiple product image support (again with zoom capability) Magento is not for everyone.  &#8230; <a href="http://www.eliasinteractive.com/blog/review-of-magento-open-source-powerhouse/">Continue Reading <span class="meta-nav">&#187;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Practical eCommerce author  <a title="View Armando Roggio's Profile" href="http://www.practicalecommerce.com/member/873-Armando-Roggio">Armando Roggio</a> posted a <a href="http://www.practicalecommerce.com/articles/925-The-PeC-Review-Magento-Is-the-Open-Source-Powerhouse-" target="_blank">review of Magento&#8217;s eCommerce platform</a> last month.  The video critique is below.  Here are a few summary points:</p>
<p>A few very cool Magento features:</p>
<ul>
<li>Add-to-compare</li>
<li>Faceted navigation discovery</li>
<li>Zoom feature</li>
<li>Multiple product image support (again with zoom capability)</li>
</ul>
<p>Magento is not for everyone.  It requires a working knowledge of the following to use effectively:</p>
<ul>
<li>Apache web server</li>
<li>SOAP</li>
<li>PHP</li>
<li>XML</li>
<li>SQL</li>
<li>XHTML</li>
<li>CSS</li>
</ul>
<blockquote><p>The bottom line is that although Magento is open source, it acts and looks like the best of commercial systems&#8230;</p></blockquote>
<p>Check out Armando&#8217;s review and drop us a note at Elias.  We can help you with technical aspects of  a Magento install, Magento modifiy, Magento module, and Magento customization.</p>
<p><span style="margin: 0px auto; display: block; width: 425px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="autostart=false&amp;thumb= http://bannerrep.com/videos/pec-review/magento/FirstFrame.png&amp;thumbscale=85&amp;color=0x1A1A1A,0x1A1A1A" /><param name="src" value="http://widgets.vodpod.com/w/video_embed/Groupvideo.2088996" /><param name="wmode" value="transparent" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://widgets.vodpod.com/w/video_embed/Groupvideo.2088996" wmode="transparent" flashvars="autostart=false&amp;thumb= http://bannerrep.com/videos/pec-review/magento/FirstFrame.png&amp;thumbscale=85&amp;color=0x1A1A1A,0x1A1A1A"></embed></object></span></p>
<div style="font-size: 10px;">more about &#8220;<a href="http://vodpod.com/watch/1358294-the-pec-review-magento-is-the-open-source-powerhouse-practical-ecommerce?pod=exactman">The PeC Review: Magento Is the Open S&#8230;</a>&#8220;, posted with <a href="http://vodpod.com/wordpress">vodpod</a></div>
<div id="tweetbutton441" class="tw_button" style="float:left;margin-right:10px;"><a href="http://twitter.com/share?url=http%3A%2F%2Fbit.ly%2Fl5XYHy&amp;via=tweetelias&amp;text=Review%20of%20Magento%3A%20Open%20Source%20Powerhouse&amp;related=&amp;lang=en&amp;count=horizontal&amp;counturl=http%3A%2F%2Fwww.eliasinteractive.com%2Fblog%2Freview-of-magento-open-source-powerhouse%2F" class="twitter-share-button"  style="width:55px;height:22px;background:transparent url('http://www.eliasinteractive.com/wp-content/plugins/wp-tweet-button/tweetn.png') no-repeat  0 0;text-align:left;text-indent:-9999px;display:block;">Tweet</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.eliasinteractive.com/blog/review-of-magento-open-source-powerhouse/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

