cancel
Showing results for 
Search instead for 
Did you mean: 

Page.xml

SOLVED

Page.xml

Hi,

 

I have the following code in my page.xml to add a new pagelayout:

 

    <page_stratic_kategorieseite>
        <label>Kat</label>
        <reference name="root"> 
            <action method="setTemplate"><template>page/stratic_kategorieseite.phtml</template></action>
            <action method="setIsHandle"><applied>1</applied></action>
        </reference>
    </page_stratic_kategorieseite>

But the option isn't displayed in the Backend.

 

Does anybody know why?

Thanks in advance Smiley Happy

----------------------------------------------------------------------------------------------
NDDT-Designs
1 ACCEPTED SOLUTION

Accepted Solutions

Re: Page.xml

 you are not done,

        <page>
            <layouts>
                <one_column_bare module="page" translate="label">
                    <label>Kat</label>
                    <template>page/stratic_kategorieseite.phtml</template>
                    <layout_handle>page_stratic_kategorieseite</layout_handle>
                </one_column_bare>
            </layouts>
        </page>

add this to the global node of your config.xml in your local module, and replace param values where nessesary

 

 

View solution in original post

2 REPLIES 2

Re: Page.xml

 you are not done,

        <page>
            <layouts>
                <one_column_bare module="page" translate="label">
                    <label>Kat</label>
                    <template>page/stratic_kategorieseite.phtml</template>
                    <layout_handle>page_stratic_kategorieseite</layout_handle>
                </one_column_bare>
            </layouts>
        </page>

add this to the global node of your config.xml in your local module, and replace param values where nessesary

 

 

Re: Page.xml

Thanks Smiley Happy this solved my Problem

----------------------------------------------------------------------------------------------
NDDT-Designs