質問

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