<?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>Proxyutza blog &#187; xHTML</title>
	<atom:link href="http://www.proxyutza.com/category/xhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.proxyutza.com</link>
	<description>About all sorth of things: PHP, Hacks, Scripts, Servers, Linux, Technology, News, Trends</description>
	<lastBuildDate>Wed, 26 May 2010 10:37:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Magento &#8211; how to add download links on product page</title>
		<link>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/</link>
		<comments>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/#comments</comments>
		<pubDate>Fri, 07 Nov 2008 10:46:05 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[xHTML]]></category>
		<category><![CDATA[HTML]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/?p=67</guid>
		<description><![CDATA[This is a serious drawback when using magento, i don&#8217;t know why they havent added this feature yet because other carts have it. Most of shops have products that ofer user guide or other downloads. It&#8217;s nice to be able to find them on the product page. For the moment there is only a small [...]]]></description>
			<content:encoded><![CDATA[<p>This is a serious drawback when using magento, i don&#8217;t know why they havent added this feature yet because other carts have it. Most of shops have products that ofer user guide or other downloads. It&#8217;s nice to be able to find them on the product page.</p>
<p>For the moment there is only a small hack that you can do to be able to display download links on your product page. I learned about it on the magento forums and adjusted the code to fit my theme.</p>
<p>So if you&#8217;re using the default magento theme, do the following:</p>
<p>1. create a new folder under media/catalog/product/ named pdf so it should be media/catalog/product/pdf/</p>
<p>2. Upload your pdf document to yourshop/media/catalog/product/pdf so it should be yourshop/media/catalog/product/pdf/pdfdocument.pdf</p>
<p>3. go to your product managing page under admin panel and edit the product. Now in the short description box you must add the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;divider&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>h4<span style="color: #339933;">&gt;</span>Downloads<span style="color: #339933;">&lt;/</span>h4<span style="color: #339933;">&gt;</span>
<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;short-description&quot;</span><span style="color: #339933;">&gt;&lt;</span>a title<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;Download ATmega88 dev board User Guide&quot;</span> href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;http://www.youritronics.com/shop/media/catalog/product/pdf/atmega88-dev-userguide.pdf&quot;</span> target<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;_blank&quot;</span><span style="color: #339933;">&gt;</span>User Guide<span style="color: #339933;">.</span>pdf <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">392</span> Kb<span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></div>

<p>Remember the description box adds &lt;BR&gt; for every new line you create, so place the code immediately after your last character from product description to get a nice alignment. Now your Download section should appear immediately after your short description.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/magento-how-to-add-download-links-on-product-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IE8 compatibility header tag</title>
		<link>http://www.proxyutza.com/ie8-compatibility-header-tag/</link>
		<comments>http://www.proxyutza.com/ie8-compatibility-header-tag/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 15:54:51 +0000</pubDate>
		<dc:creator>ProXy</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[xHTML]]></category>
		<category><![CDATA[IE8]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.proxyutza.com/2008/03/06/ie8-compatibility-header-tag/</guid>
		<description><![CDATA[Using a simple meta declaration, we can specify the rendering engine we would like IE8 to use. For example, inserting this: &#60;meta http-equiv="X-UA-Compatible" content="IE=8" /&#62; into the head of a document would make IE8 render the page using the new standards mode.]]></description>
			<content:encoded><![CDATA[<p>Using a simple <code>meta</code> declaration, we can specify the rendering engine we would like <span class="caps">IE8</span> to use. For example, inserting this:</p>
<pre>&lt;meta http-equiv="X-UA-Compatible" content="IE=8" /&gt;</pre>
<p>into the head of a document would make <span class="caps">IE8</span> render the page using the new standards mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.proxyutza.com/ie8-compatibility-header-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
