SwissUpLabs Logo

Attributepages and third-party modules

Mirasvit_Seo

Mirasvit seo module applies category attributes to attributepage meta tags automatically. In order to avoid this behavior and leave correct meta tags, you need to apply changes to Mirasvit_Seo source code.

Apply the following patch to app/code/local/Mirasvit/Seo/Model/Observer.php:

             if (Mage::registry('splash_page')) {
                 return;
             }
+
+            if (Mage::app()->getRequest()->getModuleName() == 'attributepages') {
+                return;
+            }
Edit this Page