<?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>Solution Log &#124; Antonio David - NVNCBL &#187; simple</title>
	<atom:link href="http://www.nvncbl.com/tagged/simple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nvncbl.com</link>
	<description>A place to log my programming solutions for future reference</description>
	<lastBuildDate>Sun, 28 Aug 2011 01:20:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Magento Configurable Product Pricing</title>
		<link>http://www.nvncbl.com/2009/08/magento-configurable-product-pricing/</link>
		<comments>http://www.nvncbl.com/2009/08/magento-configurable-product-pricing/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 18:04:54 +0000</pubDate>
		<dc:creator>Antonio</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[configurable]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[prices]]></category>
		<category><![CDATA[simple]]></category>

		<guid isPermaLink="false">http://www.nvncbl.com/?p=356</guid>
		<description><![CDATA[Let&#8217;s say for example that configurable product A is defined to have 2 attributes &#8220;color&#8221; and &#8220;size&#8221;.  Values for color may be: Black, White, Chrome while values for size may be: 1&#8243;, 2&#8243;, 3&#8243;, and 4&#8243;.
One would expect that there should be a price matrix that might look like:




1&#8243;
2&#8243;
3&#8243;
4&#8243;


Black
$1.00
$1.20
$1.40
$1.60


White
$1.05
$1.25
$1.45
$1.65


Chrome
$1.15
$1.35
$1.55
$1.75



But if you only have simple products:
Black [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say for example that configurable product A is defined to have 2 attributes &#8220;color&#8221; and &#8220;size&#8221;.  Values for color may be: <strong>Black</strong>, <strong>White</strong>, <strong>Chrome</strong> while values for size may be: <strong>1&#8243;</strong>, <strong>2&#8243;</strong>, <strong>3&#8243;</strong>, and <strong>4&#8243;</strong>.</p>
<p>One would expect that there should be a price matrix that might look like:</p>
<table border="0">
<tbody>
<tr>
<th></th>
<th>1&#8243;</th>
<th>2&#8243;</th>
<th>3&#8243;</th>
<th>4&#8243;</th>
</tr>
<tr>
<th>Black</th>
<td>$1.00</td>
<td>$1.20</td>
<td>$1.40</td>
<td>$1.60</td>
</tr>
<tr>
<th>White</th>
<td>$1.05</td>
<td>$1.25</td>
<td>$1.45</td>
<td>$1.65</td>
</tr>
<tr>
<th>Chrome</th>
<td>$1.15</td>
<td>$1.35</td>
<td>$1.55</td>
<td>$1.75</td>
</tr>
</tbody>
</table>
<p><span id="more-356"></span>But if you only have simple products:</p>
<p>Black + 1&#8243; = $1.00<br />
Black + 3&#8243; = $1.40<br />
White + 1&#8243; = $1.05<br />
White + 2&#8243; = $1.25<br />
Chrome + 3&#8243; = $1.55<br />
Chrome + 4&#8243; = $1.75</p>
<p>&#8230; then you don&#8217;t need the full matrix.  Even if you did need the full matrix, how do you set up simple/configurable product pricing in Magento?</p>
<p><strong>Solution:</strong></p>
<p>This <a title="Simple Configurable Products" href="http://www.magentocommerce.com/extension/596/simple-configurable-products" class="external">Simple Configurable Products</a> extension by Matt Dean.  From the extension page:</p>
<blockquote><p>This extension changes the way that the pricing of configurable products works in Magento. With this extension enabled, a configurable product&#8217;s own price is never used. Instead, the price used is that of the appropriate associated simple product.</p>
<p>This gives site owners direct control to set the price of every configuration of a product, while still giving users the flexibility they usually get with configurable products. (There&#8217;s no more having to set rules such as: +20% for blue, -£10 for small, +15% for leather. You just price the underlying small-blue-leather product at £199.99 and that&#8217;s what the user pays.)</p></blockquote>
<p>You still have to create the configurable products and set certain attributes to be the configurable ones ( e.g. &#8220;Color&#8221; and &#8220;Size&#8221; in the previous example ).  Set the prices of simple products (no need to set the price of configurable products), and the extension takes care of the rest.  In the front-end, users will still be specifying Color and Size, and prices will change accordingly.</p>
<p>Happy pricing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nvncbl.com/2009/08/magento-configurable-product-pricing/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

