Quiero crear un bloque estático que muestre todas mis categorías y las muestre en una lista. No necesito una imagen y no necesito las subcategorías.
Entonces quiero agregar este bloque a mi página de inicio.
Quiero crear un bloque estático que muestre todas mis categorías y las muestre en una lista. No necesito una imagen y no necesito las subcategorías.
Entonces quiero agregar este bloque a mi página de inicio.
Respuestas:
Crear un .phtml
archivo adentro, app/design/frontend/your_theme/default/template/catalog
asígnele un nombre homecategories.phtml
y pegue este código en él
<!-- Categories display start -->
<div class="home_categories">
<ul>
<?php $helper = $this->helper('catalog/category') ?>
<?php foreach ($helper->getStoreCategories() as $_category): ?>
<li>
<a href="<?php echo Mage::getModel('catalog/category')->setData($_category->getData())->getUrl(); ?>" title="<?php echo $_category->getName() ?>"><?php echo $_category->getName() ?></a>
</li>
<?php endforeach ?>
</ul>
</div>
<?php echo $this->getChildHtml() ?>
<!-- Categories display end -->
ahora cree un bloque estático, vamos a nombrarlo como homecategories
id home_categories
y ahora coloque este código en el contenido de ese bloque {{block type="core/template" template="catalog/homecategories.phtml"}}
ahora llame a este bloque estático en su cms.xml
de esta manera
<block type="cms/block" name="homecategories">
<action method="setBlockId"><block_id>home_categories</block_id></action>
</block>
Crear un bloque estático desde admin Luego
cree un archivo local.xml debajo app/design/frontend/yourpackage/yourtemplate/layout
y debajo del código siguiente
<?xml version="1.0"?>
<layout version="0.1.0">
<catalog_category_layered>
<reference name="category.products">
<block type="cms/block" name="cat_static_block" >
<!--
The content of this block is taken from the database by its block_id.
You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>yourblock_id</block_id></action>
</block>
</reference>
</catalog_category_layered>
<catalog_category_default>
<reference name="category.products">
<block type="cms/block" name="cat_static_block" >
<!--
The content of this block is taken from the database by its block_id.
You can manage it in admin CMS -> Static Blocks
-->
<action method="setBlockId"><block_id>yourblock_id</block_id></action>
</block>
</reference>
</catalog_category_default>
</layout>
y goto app/design/frontend/yourpackage/yourtemplate/template/catalog/category/view.phtml
agregar código<?php echo $this->getChildHtml('cat_static_block');?>