Hi Guys !
i need some help to get category description to the bottom of the category.
in my
app/design/frontend/YOURTHEME/default/template/catalog/product/list.phtml
i have add this line of code
echo Mage::getModel('catalog/layer')->getCurrentCategory()->getDescription();
at the bottom.
and yes my text is moving down to bottom.
but its also on my top.
what can i do to remove it from the top ?
Solved! Go to Solution.
Hi @keithwinlon
Open this file:
app/design/frontend/YOURTHEME/default/template/catalog/category/view.phtml
and remove this code to remove the Category Description from the top:
<?php if($_description=$this->getCurrentCategory()->getDescription()): ?> <div class="category-description std"> <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?> </div> <?php endif; ?>
Hi @keithwinlon
Open this file:
app/design/frontend/YOURTHEME/default/template/catalog/category/view.phtml
and remove this code to remove the Category Description from the top:
<?php if($_description=$this->getCurrentCategory()->getDescription()): ?> <div class="category-description std"> <?php echo $_helper->categoryAttribute($_category, $_description, 'description') ?> </div> <?php endif; ?>