Yanıtlar:
Hiç bir modül oluşturmanıza gerek yok. Widget'ları Magento 1.4+ ile kullanabilirsiniz:
CMS> Widgets'a tıklayın:
"Yeni bir Widget Örneği Ekle" yi tıklayın:
"CMS Statik Blok" u ve temanızın adını seçin:
Ardından, 'ön özellikler' altında bir başlık verin ve "Düzen Güncellemesi Ekle" yi tıklayın ve yalnızca ana içerik bloğundaki ana sayfada görüntülenecek şekilde yapılandırın:
Pencere Öğesi Seçenekleri altında görüntülemek istediğiniz statik bloğu seçin:
local.xml
Altında oluşturapp/design/frontend/your package/your template/layout/
Ve kodu koy
<?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>
Bunu dene her zaman işe yarıyor
<reference name="after_body_start">
<block type="core/template" name="block_name" template="template/template.phtml" />
</reference>
İşte bunu yapmanın gerçekten hızlı bir yolu ...
Bir modül oluşturun:
<?xml version="1.0"?>
<config>
<modules>
<Namespace_PageLayout>
<active>true</active>
<codePool>local</codePool>
<depends>
<Mage_Page/>
</depends>
</Namespace_PageLayout>
</modules>
</config>
Ardından, config dosyasına aşağıdakileri ekleyin
<?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>
Ve tema klasörünüzde app / design / frontend / YOURTHEME / default / template / page / 1column-home.phtml
bunu ekle:
<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>
Daha sonra Magento yöneticinizde 'custom_block' veya her neyse statik bir blok oluşturun ve başlıktan sonra 1column-home.phtml dosyasına ekleyin:
<?php echo $this->getChildHtml('header') ?>
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('custom_block')->toHtml(); ?>
Statik bloğa bir miktar içerik eklediğinizden ve yeni ana sayfa düzeninizi CMS sayfalarındaki tasarım sekmesinden seçtiğinizden emin olun ...