Вопрос

I have a template called test.phtml in \magento\app\design\frontend\rwd\newtheme\template\test\test.phtml

In page.xml layout file I am not getting how to add my template to appear in all pages except product page.

Это было полезно?

Решение

You have to add two layout update in your layout.xml file

First to add your template in all pages

<default>
    <reference name="content"> // Changes you reference accordingly
         <block type="core/template" name="customtestblock" template="test/test.phtml"/>
    </reference>
</default>

Second to remove block from category page

<catalog_category_default>
    <remove name="customtestblock"/>
</catalog_category_default>

<catalog_category_layered>
    <remove name="customtestblock"/>
</catalog_category_layered>
Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top