FreshP:
Does anyone happen to know if it is possible to add the product description to the shopping cart content list, so that similar products can be easily identified without having to return to the product list to check if the correct item has been purchased?
Ok, did some home work for you tonight!
includes/templates/template_default/templates/tpl_shopping_cart_default.php
Line 85, I am using 1.3.7 zen-cart
<a href="<?php echo $product['linkProductsName']; ?>"><div id="cartImage" class="back"><?php echo $product['productsImage']; ?></div><div id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?></div></a>
Replace with this!
<a href="<?php echo $product['linkProductsName']; ?>"><div id="cartImage" class="back"><?php echo $product['productsImage']; ?></div><div id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>'; ?><?php echo zen_products_lookup($product['id'], 'products_description'); ?></div></a>
insert into your override directory of course.....
includes/templates/your template/template/tpl_shopping_cart_default.php
Enjoy,