Can somebody tell me how I might also include the manufacturer in the details of my shopping cart?
http://server2.geekhost.ca/~shopyand...=shopping_cart
I would like to have it in my third column above the size...
any help is appreciated...
thanks
Can somebody tell me how I might also include the manufacturer in the details of my shopping cart?
http://server2.geekhost.ca/~shopyand...=shopping_cart
I would like to have it in my third column above the size...
any help is appreciated...
thanks
You can use your templates and overrides on the file:
/includes/templates/your_template_dir/templates/tpl_shopping_cart_default.php
and add the code in RED:
Code:<td class="cartProductDisplay"> <a href="<?php echo $product['linkProductsName']; ?>"><span id="cartImage" class="back"><?php echo $product['productsImage']; ?></span><span id="cartProdTitle"><?php echo $product['productsName'] . '<span class="alert bold">' . $product['flagStockCheck'] . '</span>' . '<br />' . zen_get_products_manufacturers_name($product['id']); ?></span></a> <br class="clearBoth" />
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
Thanks Ajeh, that worked but I'm having the issue where its above the product image and I want it below with the other information down there: http://server2.geekhost.ca/~shopyand...=shopping_cart
Also having the same problem in my product pages: http://server2.geekhost.ca/~shopyand...e=products_new
I want it under the product image in both instances, any ideas how I can do that?
Adjust on your template where the code is added:
Example, place it below the Attributes:Code:'<br />' . zen_get_products_manufacturers_name($product['id'])
Code:echo '</ul>'; echo '</div>'; } // bof: add manufacturers_name echo '<br />' . zen_get_products_manufacturers_name($product['id']); // eof: add manufacturers_name ?>
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!