문제

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