How do show the description in child categories?
[attachment cleanup by admin]
Hello,
You shoud edit your custom template category/default.php and add the following code when child categories are printed out after 112 in default template
<div class="category_description">
<?php echo $category->category_description; ?>
</div>
Some more information regarding category/product fields:
Category Fields: http://forum.virtuemart.net/index.php?topic=97744.0
Product Fields: http://forum.virtuemart.net/index.php?topic=92756.0
$this vs $product: http://forum.virtuemart.net/index.php?topic=100696.0
Regards
Regards
Sorry, my mistake, i try "" <?php echo $this->category->category_description ; ?> ""
Hello,
$this is for the current category ... but for the loop that printouts the children categories the right one is $category.
So, you resolve it i suppose :)
Regards
yes, is it ok. thx.