cancel
Showing results for 
Search instead for 
Did you mean: 

How can move category description ?

SOLVED

How can move category description ?

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 ? 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How can move category description ?

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; ?>
Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now

View solution in original post

1 REPLY 1

Re: How can move category description ?

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; ?>
Was my answer helpful? You can accept it as a solution.
175+ Professional Extensions for M1 & M2
Need a developer?Just visit Contact Us Now