<?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="https://www.the-mage-expert.com/tag/category-page/feed/" rel="self" type="application/rss+xml" />
	<link>https://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>Pager missing after updating to Magento 2.4.3?</title>
		<link>https://www.the-mage-expert.com/1221/magento2-pager-missing-after-updating-to-magento-2-4-3/</link>
		<comments>https://www.the-mage-expert.com/1221/magento2-pager-missing-after-updating-to-magento-2-4-3/#comments</comments>
		<pubDate>Thu, 26 May 2022 08:18:54 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[category page]]></category>
		<category><![CDATA[Magento 2]]></category>
		<category><![CDATA[pager]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1221</guid>
		<description><![CDATA[Sometimes after updating to Magento 2.4.3 the pager on the category page goes missing. This happens when you are overwriting templates/product/list.phtml in your theme. Just open that file and replace [crayon-6a7ac047d76c4/] with [crayon-6a7ac047d770a/] This should solve the problem, your pager&#8230;]]></description>
				<content:encoded><![CDATA[<p>Sometimes after updating to Magento 2.4.3 the pager on the category page goes missing. This happens when you are overwriting <strong>templates/product/list.phtml</strong> in your theme. Just open that file and replace</p><pre class="crayon-plain-tag">&lt;?= $block-&gt;getToolbarHtml() ?&gt;</pre><p>with</p><pre class="crayon-plain-tag">&lt;?= $block-&gt;getChildBlock('toolbar')-&gt;setIsBottom(true)-&gt;toHtml() ?&gt;.</pre><p>This should solve the problem, your pager should now be visible again.</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/1221/magento2-pager-missing-after-updating-to-magento-2-4-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Category page loading extremely slow</title>
		<link>https://www.the-mage-expert.com/1070/magento-category-page-loading-extremely-slow/</link>
		<comments>https://www.the-mage-expert.com/1070/magento-category-page-loading-extremely-slow/#comments</comments>
		<pubDate>Fri, 24 Jun 2016 06:53:47 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[category page]]></category>
		<category><![CDATA[swatches]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=1070</guid>
		<description><![CDATA[If the category page of your Magento store is loading really slow, the configurable swatches might be the problem. Override /app/code/core/Mage/ConfigurableSwatches/Helper/Mediafallback.php and move [crayon-6a7ac047df014/] up to before the foreach loop. This will help increasing the speed of your category page&#8230;]]></description>
				<content:encoded><![CDATA[<p>If the category page of your Magento store is loading really slow, the configurable swatches might be the problem. Override  <strong>/app/code/core/Mage/ConfigurableSwatches/Helper/Mediafallback.php</strong> and move</p><pre class="crayon-plain-tag">// normalize to all lower case before we start using them
$optionLabels = array_map(function ($value) {
 return array_map('Mage_ConfigurableSwatches_Helper_Data::normalizeKey', $value);
}, $optionLabels);</pre><p></p>
<p>up to before the foreach loop. This will help increasing the speed of your category page if Magento configurable swatches were causing the problem.</p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/1070/magento-category-page-loading-extremely-slow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change column count of category page in admin area (backend)</title>
		<link>https://www.the-mage-expert.com/651/magento-change-column-count-category-page-in-admin-backend/</link>
		<comments>https://www.the-mage-expert.com/651/magento-change-column-count-category-page-in-admin-backend/#comments</comments>
		<pubDate>Fri, 05 Sep 2014 10:14:16 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[backend]]></category>
		<category><![CDATA[category page]]></category>
		<category><![CDATA[products]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=651</guid>
		<description><![CDATA[Open the category in the admin area (backend) and add the following xml to the layout update section. [crayon-6a7ac047df54f/]]]></description>
				<content:encoded><![CDATA[<p>Open the category in the admin area (backend) and add the following xml to the layout update section.</p>
<p></p><pre class="crayon-plain-tag">&lt;reference name=&quot;product_list&quot;&gt;
    &lt;action method=&quot;setColumnCount&quot;&gt;&lt;count&gt;4&lt;/count&gt;&lt;/action&gt;
&lt;/reference&gt;</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/651/magento-change-column-count-category-page-in-admin-backend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the category page column count programmatically</title>
		<link>https://www.the-mage-expert.com/636/magento-changing-column-count-category-page-programmatically/</link>
		<comments>https://www.the-mage-expert.com/636/magento-changing-column-count-category-page-programmatically/#comments</comments>
		<pubDate>Mon, 05 May 2014 09:37:45 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Solutions]]></category>
		<category><![CDATA[category page]]></category>
		<category><![CDATA[template (phtml)]]></category>

		<guid isPermaLink="false">http://www.the-mage-expert.com/?p=636</guid>
		<description><![CDATA[Add the following code to your themes catalog\product\list.phtml file. It will change the column count to 2. [crayon-6a7ac047df7c9/]]]></description>
				<content:encoded><![CDATA[<p>Add the following code to your themes <em>catalog\product\list.phtml</em> file. It will change the column count to 2.</p>
<p></p><pre class="crayon-plain-tag">$this-&gt;setColumnCount(2);</pre><p></p>]]></content:encoded>
			<wfw:commentRss>https://www.the-mage-expert.com/636/magento-changing-column-count-category-page-programmatically/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>https://www.the-mage-expert.com/451/magento-how-to-know-if-on-product-or-category-page/</link>
		<comments>https://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-6a7ac047dfa71/]]]></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>https://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>
	</channel>
</rss>
