<?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>The Magento Expert</title>
	<atom:link href="http://www.the-mage-expert.com/tag/product-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.the-mage-expert.com</link>
	<description>Your Magento Commerce Expert</description>
	<lastBuildDate>Tue, 24 Jan 2023 09:37:24 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Adding the compare list link to the product page</title>
		<link>http://www.the-mage-expert.com/596/magento-adding-compare-list-link-product-page/</link>
		<comments>http://www.the-mage-expert.com/596/magento-adding-compare-list-link-product-page/#comments</comments>
		<pubDate>Fri, 14 Feb 2014 11:13:00 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[compare list]]></category>
		<category><![CDATA[product page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=596</guid>
		<description><![CDATA[The Magento compare list link is shown on the category page by default. Using the following code you can add it to the Magento product page as well. [crayon-6a6854dc0cec7/]]]></description>
				<content:encoded><![CDATA[<p>The Magento compare list link is shown on the category page by default. Using the following code you can add it to the Magento product page as well.</p>
<p></p><pre class="crayon-plain-tag">&lt;a href=&quot;&lt;?php echo Mage::helper('catalog/product_compare')-&gt;getAddUrl($_product);?&gt;&quot;&gt;link text&lt;/a&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/596/magento-adding-compare-list-link-product-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to know if you are on the product or category page</title>
		<link>http://www.the-mage-expert.com/451/magento-how-to-know-if-on-product-or-category-page/</link>
		<comments>http://www.the-mage-expert.com/451/magento-how-to-know-if-on-product-or-category-page/#comments</comments>
		<pubDate>Thu, 05 Sep 2013 09:47:06 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[category page]]></category>
		<category><![CDATA[product page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=451</guid>
		<description><![CDATA[YOu want to know if you are on either the product or category page? The following code might help: [crayon-6a6854dc1b948/]]]></description>
				<content:encoded><![CDATA[<p>YOu want to know if you are on either the product or category page? The following code might help:</p>
<p></p><pre class="crayon-plain-tag">$controllerName = $this-&gt;getRequest()-&gt;getControllerName();
$isCategoryPage = $controllerName == 'category' ? true : false;
$isProductPage = $controllerName == 'product' ? true : false;

if(...)</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/451/magento-how-to-know-if-on-product-or-category-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing &#8220;in stock&#8221; / &#8220;sold out&#8221; from the product page using CSS</title>
		<link>http://www.the-mage-expert.com/310/magento-removing-sold-out-in-stock-product-page-using-css/</link>
		<comments>http://www.the-mage-expert.com/310/magento-removing-sold-out-in-stock-product-page-using-css/#comments</comments>
		<pubDate>Tue, 09 Apr 2013 11:12:39 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[product page]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=310</guid>
		<description><![CDATA[Add the following CSS to youe themes CSS file and the &#8220;in stock&#8221; / &#8220;sold out&#8221; information will not be shown on the Magento product page. [crayon-6a6854dc1be9c/]]]></description>
				<content:encoded><![CDATA[<p>Add the following CSS to youe themes CSS file and the &#8220;in stock&#8221; / &#8220;sold out&#8221; information will not be shown on the Magento product page.</p>
<p></p><pre class="crayon-plain-tag">.availability.in-stock,
.availability.out-of-stock {
    display: none;
}</pre><p></p>]]></content:encoded>
			<wfw:commentRss>http://www.the-mage-expert.com/310/magento-removing-sold-out-in-stock-product-page-using-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
