<?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>Magento Themes &#38; Templates</title>
	<atom:link href="http://www.osetemplates.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.osetemplates.com</link>
	<description>Magento Themes &#38; Magento Template Developers!</description>
	<lastBuildDate>Wed, 11 Apr 2012 11:53:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding a CMS page layout</title>
		<link>http://www.osetemplates.com/04/adding-a-cms-page-layout/</link>
		<comments>http://www.osetemplates.com/04/adding-a-cms-page-layout/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 11:51:46 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=245</guid>
		<description><![CDATA[In most Magento webshops we are developing there is a need to use different templates for certain pages. In Magento we want te be able to select those templates for each page we&#8217;ve created (home, static pages, etc) as show here: Go ahead and create a new .xml file in the directory app/etc/modules/Mage_Page.xml and insert [...]]]></description>
			<content:encoded><![CDATA[<p>In most Magento webshops we are developing there is a need to use different templates for certain pages. In Magento we want te be able to select those templates for each page we&#8217;ve created (home, static pages, etc) as show here:</p>
<p><img src="http://www.osetemplates.com/wp-content/uploads/2012/04/page-layout.jpg" alt="" title="page-layout" width="533" height="192" class="alignnone size-full wp-image-246" /><br />
<span id="more-245"></span><br />
Go ahead and create a new .xml file in the directory app/etc/modules/Mage_Page.xml and insert the following xml:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot;?&gt;
&lt;config&gt;
    &lt;modules&gt;
        &lt;Mage_Page&gt;
            &lt;active&gt;true&lt;/active&gt;
            &lt;codePool&gt;local&lt;/codePool&gt;
        &lt;/Mage_Page&gt;
    &lt;/modules&gt;
&lt;/config&gt;
</pre>
<p>Now go ahead and copy the folder app/code/core/Mage/Page to app/code/local/Mage</p>
<p>We want to use this core module and modify it for our own purposes thus adding new layouts. Also, we will be able to update Magento without problems and still keep our layout updates.</p>
<p>Now we need to edit app/code/core/Mage/Page/etc/config.xml and look at line 46. Today we will be adding a layout specifically modified for the homepage.</p>
<p>Add this within the <layouts> tag:</p>
<pre class="brush: xml; title: ; notranslate">
                &lt;home module=&quot;page&quot; translate=&quot;label&quot;&gt;
                    &lt;label&gt;Home&lt;/label&gt;
                    &lt;template&gt;page/2columns-left-home.phtml&lt;/template&gt;
                    &lt;layout_handle&gt;page_home&lt;/layout_handle&gt;
                &lt;/home&gt;
</pre>
<p>Now, I&#8217;ve named my new home template 2columns-left-home.phtml and this is referring to my template residing in app/design/frontend/yourtheme/yourtheme/template/page folder.<br />
When refreshing the backend you&#8217;ll notice our new option as seen above.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/04/adding-a-cms-page-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Next and previous link on product details page in Magento</title>
		<link>http://www.osetemplates.com/03/next-and-previous-link-on-product-details-page-in-magento/</link>
		<comments>http://www.osetemplates.com/03/next-and-previous-link-on-product-details-page-in-magento/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 12:15:55 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[FREE Magento Templates]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=230</guid>
		<description><![CDATA[One of the big features that custom Magento shops seem to have is the next and previous link for products on the products details page. So, how do we do this? Open up the following file: app/design/frontend/your-instance-name/your-theme/template/catalog/product/view.phtml. Now, if you&#8217;re like me, you&#8217;ll want these links directly beneath your product title&#8230; So look for this [...]]]></description>
			<content:encoded><![CDATA[<p>One of the big features that custom Magento shops seem to have is the next and previous link for products on the products details page. So, how do we do this?<br />
<span id="more-230"></span><br />
Open up the following file: <strong>app/design/frontend/your-instance-name/your-theme/template/catalog/product/view.phtml</strong>.</p>
<p>Now, if you&#8217;re like me, you&#8217;ll want these links directly beneath your product title&#8230; So look for this line:</p>
<pre class="brush: php; title: ; notranslate">&lt;div class=&quot;product-name&quot;&gt;
                &lt;h1&gt;&lt;?php echo $_helper-&gt;productAttribute($_product, $_product-&gt;getName(), 'name') ?&gt;&lt;/h1&gt;
            &lt;/div&gt;</pre>
<p><strong>And add this beneath it:</strong></p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
$_product = $this-&gt;getProduct();
$sort = Mage::getModel('catalog/session');
$order = strtolower($sort-&gt;getSortOrder());
$direction = strtolower($sort-&gt;getSortDirection());
if ($direction == &quot;&quot;) {
    $direction = 'asc';
}
if ($order == &quot;&quot;) {
    $order = Mage::getStoreConfig('catalog/frontend/default_sort_by');
}
if ($this-&gt;helper('catalog/data')-&gt;getCategory()) {
    $currentCategory = Mage::registry('current_category')-&gt;getId();
} else {
    $currentCategory = Mage::app()-&gt;getStore()-&gt;getRootCategoryId();
}
$category_products = Mage::getModel('catalog/category')-&gt;load($currentCategory)
        -&gt;getProductCollection()
        -&gt;addAttributeToSort($order, $direction);
$cat_prod_ids = array();
    foreach($category_products as $prod) {
        $cat_prod_ids[] = $prod-&gt;getId();
    }
$_product_id = $_product-&gt;getId();
$_pos = array_search($_product_id, $cat_prod_ids);
$_next_pos = $_pos+1;
$_prev_pos = $_pos-1;
    if( isset($cat_prod_ids[$_next_pos]) ) {
        $_next_prod = Mage::getModel('catalog/product')-&gt;load( $cat_prod_ids[$_next_pos] );
    }
    else {
        $_next_prod = NULL;
    }
    if( isset($cat_prod_ids[$_prev_pos]) ) {
        $_prev_prod = Mage::getModel('catalog/product')-&gt;load( $cat_prod_ids[$_prev_pos] );
    }
    else {
        $_prev_prod = NULL;
    }
?&gt; 

&lt;div&gt;
    &lt;?php if($_prev_prod): ?&gt;
        &lt;a href=&quot;&lt;?php print $_prev_prod-&gt;getUrlPath()?&gt;&quot;&gt;&amp;lt; Previous&lt;/a&gt; -
    &lt;?php endif; ?&gt;
    &lt;?php if($_next_prod): ?&gt;
        &lt;a href=&quot;&lt;?php print $_next_prod-&gt;getUrlPath()?&gt;&quot;&gt;Next &amp;gt;&lt;/a&gt;
    &lt;?php endif; ?&gt;
&lt;/div&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/03/next-and-previous-link-on-product-details-page-in-magento/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Magento Template &#8211; Modern Classic</title>
		<link>http://www.osetemplates.com/11/free-magento-template-modern-classic/</link>
		<comments>http://www.osetemplates.com/11/free-magento-template-modern-classic/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 15:51:07 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[FREE Magento Templates]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=212</guid>
		<description><![CDATA[I just came across this Magento template that I really like. Here is the link to this free Magento template]]></description>
			<content:encoded><![CDATA[<p>I just came across this Magento template that I really like. Here is the link to this <a href="http://www.magentocommerce.com/magento-connect/TemplatesMaster/extension/928/magento-classic-theme">free Magento template</a></p>
<p><img class="alignnone" title="Free Magento template" src="http://www.magentocommerce.com/images/modules/magento_classic_theme_free_fb5cd286a225f5126bab22976700b013_template_homepage_classic_blue.jpg" alt="Free Magento template" width="500" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/11/free-magento-template-modern-classic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google analytics for your Magento stores</title>
		<link>http://www.osetemplates.com/11/google-analytics-for-your-magento-stores/</link>
		<comments>http://www.osetemplates.com/11/google-analytics-for-your-magento-stores/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 16:11:35 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=209</guid>
		<description><![CDATA[Got a Magento store and want to use Google Analytics to track commerce statistics? In Magento, it&#8217;s just plain easy. Grab your Analytics account number, this will always start with UA. Login to your Magento admin and goto: Configuration -&#62; Google Api -&#62; Google Analytics. Set &#8220;activate&#8221; to &#8220;yes&#8221; and insert the full account number [...]]]></description>
			<content:encoded><![CDATA[<p>Got a Magento store and want to use Google Analytics to track commerce statistics? In Magento, it&#8217;s just plain easy.</p>
<p>Grab your Analytics account number, this will always start with UA.</p>
<p>Login to your Magento admin and goto: Configuration -&gt; Google Api -&gt; Google Analytics.</p>
<p>Set &#8220;activate&#8221; to &#8220;yes&#8221; and insert the full account number in the field below.</p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/11/google-analytics-for-your-magento-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento template sale!</title>
		<link>http://www.osetemplates.com/10/magento-template-sale/</link>
		<comments>http://www.osetemplates.com/10/magento-template-sale/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 13:21:31 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[FREE Magento Templates]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=204</guid>
		<description><![CDATA[You need a Magento shop? Choose of our Magento templates (or contact us for a custom Magento template) and contact us with the template you want. We will make it into a working shop for only 1199 euro&#8217;s!]]></description>
			<content:encoded><![CDATA[<p>You need a Magento shop?</p>
<p>Choose of our <a href="http://www.osetemplates.com/our-templates/" target="_self">Magento templates</a> (or contact us for a custom Magento template) and contact us with the template you want. We will make it into a working shop for only <strong>1199 euro&#8217;s</strong>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/10/magento-template-sale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Our latest Magento project</title>
		<link>http://www.osetemplates.com/10/our-latest-magento-project/</link>
		<comments>http://www.osetemplates.com/10/our-latest-magento-project/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 15:10:05 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[FREE Magento Templates]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=199</guid>
		<description><![CDATA[We&#8217;ve been very busy, besides developing a few internal templates for clients we have now also finished a template for everyone to see. So here it is, VinoWino is a wine shop developed for one of our new clients. You can buy all sort of wines and try the very cheap sample packages. Let us [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been very busy, besides developing a few internal templates for clients we have now also finished a template for everyone to see.</p>
<p>So here it is, <a href="http://www.vinowino.nl" target="_blank">VinoWino</a> is a wine shop developed for one of our new clients. You can buy all sort of wines and try the very cheap sample packages.</p>
<p><a href="http://www.osetemplates.com/wp-content/uploads/2010/10/vinowino-magento-template.jpg"><img class="alignnone size-full wp-image-200" title="vinowino-magento-template" src="http://www.osetemplates.com/wp-content/uploads/2010/10/vinowino-magento-template.jpg" alt="" width="560" height="537" /></a></p>
<p>Let us know what you think!</p>
<p>If you need a custom template, <a href="http://www.osetemplates.com/custom-magento-solutions/" target="_self">contact us</a>. If you want to choose from 100&#8242;s of other awesome templates, go <a href="http://www.osetemplates.com/our-templates/" target="_self">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/10/our-latest-magento-project/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free Magento Theme Release</title>
		<link>http://www.osetemplates.com/12/free-magento-theme-release/</link>
		<comments>http://www.osetemplates.com/12/free-magento-theme-release/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 16:06:39 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[FREE Magento Templates]]></category>
		<category><![CDATA[free template inspire blue magento]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=169</guid>
		<description><![CDATA[Free Magento Theme Here is the first Free Magento Theme we are releasing of many more to come. Inspire Blue is simple, clean and professional and free for download. All we ask of you is to keep the link on the frontpage to show your appreciation for our work. Custom Magento Themes Need a custom [...]]]></description>
			<content:encoded><![CDATA[<h3>Free Magento Theme<a href="http://www.osetemplates.com/wp-content/uploads/2008/12/inspire-blue-screen.gif"><img class="alignright size-thumbnail wp-image-170" style="border: 1px solid black; margin: 10px;" title="inspire-blue-screen" src="http://www.osetemplates.com/wp-content/uploads/2008/12/inspire-blue-screen-150x150.gif" alt="" width="150" height="150" /></a></h3>
<p>Here is the first Free Magento Theme we are releasing of many more to come.</p>
<p>Inspire Blue is simple, clean and professional and free for download. All we ask of you is to keep the link on the frontpage to show your appreciation for our work.</p>
<h3>Custom Magento Themes</h3>
<p>Need a custom magento theme? We can do that for you! Contact us by sending a mail to <a href="mailto:magento@osetemplates.com">magento@osetemplates.com</a></p>
<p><strong>Download link: </strong><a class="downloadlink" href="http://www.osetemplates.com/wp-content/plugins/download-monitor/download.php?id=5" title="Version 1 downloaded 13450 times" >Inspire blue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/12/free-magento-theme-release/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Using Pear to download from MagentoConnect</title>
		<link>http://www.osetemplates.com/12/using-pear-to-download-from-magentoconnect/</link>
		<comments>http://www.osetemplates.com/12/using-pear-to-download-from-magentoconnect/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 23:54:14 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=159</guid>
		<description><![CDATA[Setting permissions for MagentoConnect can be a little tricky at times, especially in a production environment. The best, most secure way to go about installing Connect updates is by using Pear. SSH in to your server, head to the Magento install directory and issue command: ./pear mage-setup . DON&#8217;T forget the trailing . Next install [...]]]></description>
			<content:encoded><![CDATA[<p>Setting permissions for MagentoConnect can be a little tricky at times, especially in a production environment. The best, most secure way to go about installing Connect updates is by using Pear.</p>
<p>SSH in to your server, head to the Magento install directory and issue command:</p>
<p>./pear mage-setup .</p>
<p>DON&#8217;T forget the trailing . Next install the Connect you require&#8230;</p>
<p>./pear install magento-core/Interface_Frontend_Default_Modern</p>
<p>Where &#8220;magento-core/Interface_Frontend_Default_Modern&#8221; is the key taken from MagentoConnect.</p>
<p>You need write permissions with your shell user in the theme and skin directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/12/using-pear-to-download-from-magentoconnect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Artjux Ecommerce Website Launch</title>
		<link>http://www.osetemplates.com/12/artjux-ecommerce-website-launch/</link>
		<comments>http://www.osetemplates.com/12/artjux-ecommerce-website-launch/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 09:34:49 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[e commerce]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=154</guid>
		<description><![CDATA[As you can probably tell things have been a bit busy around here lately. Today see&#8217;s the launch or ArtJuxstaposition (artjux.com) a custom ecommerce website. In brief a ton of PSD designs were sent across along with materials for products. A month later and it&#8217;s a working website. If you would like to make use [...]]]></description>
			<content:encoded><![CDATA[<p>As you can probably tell things have been a bit busy around here lately. Today see&#8217;s the launch or ArtJuxstaposition (artjux.com) a custom ecommerce website.</p>
<div class="mceTemp">
<dl id="attachment_155" class="wp-caption alignnone" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://www.osetemplates.com/wp-content/uploads/2008/12/artjux.jpg"><img class="size-medium wp-image-155" title="artjux" src="http://www.osetemplates.com/wp-content/uploads/2008/12/artjux.jpg" alt="Art Juxstaposition" width="300" height="170" /></a></dt>
</dl>
</div>
<p>In brief a ton of PSD designs were sent across along with materials for products. A month later and it&#8217;s a working website.</p>
<p>If you would like to make use of our expert services please contact us at <a href="mailto:magento@osetemplates.com">magento@osetemplates.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/12/artjux-ecommerce-website-launch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to set your Magento SQL Connection Path</title>
		<link>http://www.osetemplates.com/11/how-to-set-your-magento-sql-connection-path/</link>
		<comments>http://www.osetemplates.com/11/how-to-set-your-magento-sql-connection-path/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 12:29:22 +0000</pubDate>
		<dc:creator>Martijn</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[setup]]></category>

		<guid isPermaLink="false">http://www.osetemplates.com/?p=145</guid>
		<description><![CDATA[The easy way to set your MySQL path in Magento is by editing the /app/etc/local.xml file with your new details. A good example when you may need this is if your are migrating Magento across servers. &#60;default_setup&#62; &#60;connection&#62; &#60;host&#62;&#60;![CDATA[localhost]]&#62;&#60;/host&#62; &#60;username&#62;&#60;![CDATA[username]]&#62;&#60;/username&#62; &#60;password&#62;&#60;![CDATA[password]]&#62;&#60;/password&#62; &#60;dbname&#62;&#60;![CDATA[database]]&#62;&#60;/dbname&#62; &#60;active&#62;1&#60;/active&#62; &#60;/connection&#62; &#60;/default_setup&#62;]]></description>
			<content:encoded><![CDATA[<p>The easy way to set your MySQL path in Magento is by editing the /app/etc/local.xml file with your new details. A good example when you may need this is if your are <a href="http://www.osetemplates.com/magento-server-migration-guide/11/2008/">migrating Magento across servers.</a></p>
<p><code>&lt;default_setup&gt;<br />
&lt;connection&gt;<br />
&lt;host&gt;&lt;![CDATA[localhost]]&gt;&lt;/host&gt;<br />
&lt;username&gt;&lt;![CDATA[username]]&gt;&lt;/username&gt;<br />
&lt;password&gt;&lt;![CDATA[password]]&gt;&lt;/password&gt;<br />
&lt;dbname&gt;&lt;![CDATA[database]]&gt;&lt;/dbname&gt;<br />
&lt;active&gt;1&lt;/active&gt;<br />
&lt;/connection&gt;<br />
&lt;/default_setup&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.osetemplates.com/11/how-to-set-your-magento-sql-connection-path/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

