I have been searching for this and have no luck. I was wondering if its possible to add manufacturer onto the What's New Module. Like this:
Product Image
Manufacturer
Product Name
Price
Can anyone help me in this area?
Thanks a bunch.
I have been searching for this and have no luck. I was wondering if its possible to add manufacturer onto the What's New Module. Like this:
Product Image
Manufacturer
Product Name
Price
Can anyone help me in this area?
Thanks a bunch.
I have an image and I want something close to this
I am using the red "New!" as a manufacturer but is it possible put the manufacturer in the Whats New Module?
You could use this function to look up the manufacturers_name by the products_id ...
Just look for how the products_id is referenced in that module ...Code:/* * Return a product's manufacturer's name, from ID * TABLES: products, manufacturers */ function zen_get_products_manufacturers_name($product_id) {
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!
I don't quite understand where you are getting this.
You can use the function zen_get_products_manufacturers_name to get the name of the manufacturer via the products_id ...
Something like:
Code:'text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $new_products->fields['products_image'], $new_products->fields['products_name'], IMAGE_PRODUCT_NEW_WIDTH, IMAGE_PRODUCT_NEW_HEIGHT) . '</a><br />') . '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '</a><br />' . zen_get_products_manufacturers_name($new_products->fields['products_id']) . '<br />' . $products_price);
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!
Is this for Whats New! Module?