У моєму магазині є категорія, яка вимагає зовсім іншого розташування до стандартних макетів Magento. Тому я створив нову копію 1column.phtml і перейменував її та вніс одну невелику зміну для тестування.
Тепер проблема полягає в тому, що користувацький макет не відображається. Я створив модуль (який працює так, як це видно в адміністраторі> Налаштування> Розширений огляд).
Мої файли та вміст такі:
app / тощо / модулі / Test_Page.xml
<?xml version="1.0"?>
<config>
<modules>
<Test_Page>
<active>true</active>
<codePool>community</codePool>
<version>0.1.0</version>
<depends>
<Mage_Page />
</depends>
</Test_Page>
</modules>
</config>
app / code / local / Тест / Сторінка / тощо / config.xml
<?xml version="1.0"?>
<config>
<modules>
<Test_Page>
<version>0.1.0</version>
</Test_Page>
</modules>
<global>
<page>
<layouts>
<homepage module="page" translate="label">
<label>Homepage</label>
<template>page/home.phtml</template>
<layout_handle>homepage</layout_handle>
</homepage>
<!-- add more layouts here -->
</layouts>
</page>
</global>
<frontend>
<layout>
<updates>
<Test_Page>
<file>test_page.xml</file>
</Test_Page>
</updates>
</layout>
</frontend>
</config>
app / design / frontend / test / default / layout / test_page.xml
<?xml version="1.0"?>
<layout>
<homepage translate="label">
<label>Home Page</label>
<reference name="root">
<action method="setTemplate"><template>page/home.phtml</template></action>
<action method="setIsHandle"><applied>1</applied></action>
</reference>
</homepage>
</layout>
Я не бачу нічого, що я накрутив, він читається як модуль, але не відображається спеціальний макет :(