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 ![]()
Solved! Go to Solution.
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
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
Thanks
this solved my Problem