How Do I Add Descriptions to Related Tab in product.tpl?
Posted: Thu Mar 08, 2012 6:27 am
I would like to add the description for each product found in the related tab on the product page (product.tpl). How do I do this?
I attempted to add the following to line 327 in product.tpl inside the tab-related div for each product loop :
I get an undefined function error. I figure that description is not available wherever the tab-related functions are? Can someone help?
I attempted to add the following to line 327 in product.tpl inside the tab-related div for each product loop :
Code: Select all
<?php if ($product['description']) { ?>
<div class="description"><?php echo $product['description']; ?></div>
<?php } ?>