अपनी आवश्यकताओं को पूरा करने के लिए आपको एक एक्सटेंशन बनाने की आवश्यकता है - इसके बिना यह संभव नहीं है।
मॉड्यूल कॉन्फ़िगरेशन फ़ाइल:
मॉड्यूल फ़ाइल कॉन्फ़िगर फ़ाइल बनाएं app/etc/modules/Amit_NewLayout.xml
कोड:
<?xml version="1.0"?>
<config>
<modules>
<Amit_NewLayout>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Page />
</depends>
</Amit_NewLayout>
</modules>
</config>
Config.xml को परिभाषित करें
अब 1-column-version2.phtml
नए लेआउट के लिए टेम्पलेट के रूप में परिभाषित करेंapp/code/local/Amit/NewLayout/etc/config.xml
कोड:
<?xml version="1.0"?>
<config>
<modules>
<Amit_NewLayout>
<version>0.0.1</version>
</Amit_NewLayout>
</modules>
<global>
<page>
<layouts>
<new_cms_layout module="page" translate="label">
<label>New Cms Layout</label>
<template>page/1-column-version2.phtml</template>
<layout_handle>lookbook</layout_handle>
</new_cms_layout>
</layouts>
</page>
</global>
</config>
अब, आप इस लेआउट को CMS पेज लेआउट विकल्पों में देख पाएंगे।