Hello,
The solution will probably be to :
- Go to "Hikashop->Display->Views"
- Edit the "Listing" file of the "category" view of your front-end template
- Move these lines :
if($this->params->get('show_description',1)&&!empty($this->element->category_description)){
?>
<div class="hikashop_category_description_content">
<?php echo JHTML::_('content.prepare',$this->element->category_description); ?>
</div>
<?php
}
Just after these lines :
if(!empty($html)){ ?>
<div id="<?php echo $this->params->get('main_div_name');?>" class="hikashop_category_information hikashop_categories_listing_main">
<?php echo $html; ?>
</div>
<?php }