Risposte:
Non è necessario creare un modulo. Puoi usare Widget in Magento 1.4+:
Fai clic su CMS> Widget:
Fai clic su "Aggiungi una nuova istanza del widget":
Seleziona "CMS Static Block" e il nome del tuo tema:
Quindi, in "Proprietà frontend" assegnagli un titolo e fai clic su "Aggiungi aggiornamento layout" e configuralo come mostrato per visualizzare solo sulla home page nel blocco di contenuto principale:
In Opzioni widget selezionare il blocco statico che si desidera visualizzare:
Crea local.xml
sottoapp/design/frontend/your package/your template/layout/
E metti il codice
<?xml version="1.0"?>
<layout version="0.1.0">
<cms_index_index>
<reference name="root">
<block type="core/template" name="my.vblock" before="content" template="page/home/myblock.phtml" after="breadcrumbs" />
</reference>
</cms_index_index>
</layout>
Prova questo, funziona sempre
<reference name="after_body_start">
<block type="core/template" name="block_name" template="template/template.phtml" />
</reference>
Ecco un modo davvero veloce per farlo ...
Crea un modulo:
<?xml version="1.0"?>
<config>
<modules>
<Namespace_PageLayout>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Page/>
</depends>
</Namespace_PageLayout>
</modules>
</config>
Quindi aggiungi quanto segue al tuo file di configurazione
<?xml version="1.0"?>
<config>
<modules>
<Namespace_PageLayout>
<version>0.1.0</version>
</Namespace_PageLayout>
</modules>
<global>
<page>
<layouts>
<homepage_layout translate="label">
<label>Homepage Layout</label>
<template>page/1column-home.phtml</template>
</homepage_layout>
</layouts>
</page>
</global>
</config>
E nella cartella del tema app / design / frontend / YOURTHEME / default / template / page / 1column-home.phtml
Aggiungi questo:
<head>
<?php echo $this->getChildHtml('head') ?>
</head>
<body<?php echo $this->getBodyClass()?' class="'.$this->getBodyClass().'"':'' ?>>
<?php echo $this->getChildHtml('after_body_start') ?>
<div class="wrapper">
<?php echo $this->getChildHtml('global_notices') ?>
<div class="page">
<?php echo $this->getChildHtml('header') ?>
**<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('custom_block')->toHtml(); ?>**
<div class="main-container col1-layout cms-home">
<div class="main">
<?php echo $this->getChildHtml('breadcrumbs') ?>
<div class="col-main">
<?php echo $this->getChildHtml('global_messages') ?>
<?php echo $this->getChildHtml('content') ?>
</div>
</div>
</div>
<?php echo $this->getChildHtml('footer_before') ?>
<?php echo $this->getChildHtml('footer') ?>
<?php echo $this->getChildHtml('global_cookie_notice') ?>
<?php echo $this->getChildHtml('before_body_end') ?>
</div>
</div>
<?php echo $this->getAbsoluteFooter() ?>
</body>
</html>
Quindi nel tuo amministratore di Magento crea un blocco statico chiamato 'custom_block' o altro e aggiungilo a 1column-home.phtml dopo l'intestazione:
<?php echo $this->getChildHtml('header') ?>
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('custom_block')->toHtml(); ?>
Assicurati di aggiungere un po 'di contenuto al blocco statico e seleziona il layout della tua nuova homepage dalla scheda di progettazione nelle pagine CMS ...