Hi,
I would like to add the category description in each of the products page. At the moment each product page reads:
Breadcrumbs
Category name
Product number
previous/listing/next
Product image Product name
etc....
I would like to insert the category description between category name and product number. Tried to add the following code to the tpl_product_info_display.php file but it does not work:
<?php
// categories_description
if ($current_categories_description != '') {
?>
<div id="categoryDescription" class="catDescContent"><?php echo $current_categories_description; ?></div>
<?php } // categories_description ?>
Any help appreciated!




