In a subcategory listing I would like to include the category description for those subcategories that are displayed in the list.
This is a code snippet from category/listing_list.php
<h3 class="hikashop_category_list_item<?php echo $class; ?>" <?php echo $width; ?>>
<a href="<?php echo $link; ?>" >
<?php
echo $row->category_name;
if($this->params->get('number_of_products',0)){
echo ' ('.$row->number_of_products.')';
}
?>
</a>
</h3>
I would like to have the description after the H3 tag.
Can you give me a hint on what code I should copy and paste in there.
Thanks
Jan