I'm trying to change the text under the thumbnails on my Empty Cart page when it displays the list of new products instead of just an empty page.
This is not controlled by the same files as the main new products page and so it displays different text under the images.
I’m trying to replace the products_id (or is it called products_name?) with whatever generates the ‘manufacturers id' or 'manufacturers name')
So, I’d quite like to get from this:
to this:
I’m just not sure how to call for the manufacturers name instead of the products_name.
Can anyone tell me how I need to alter the php file? This is the line that controls this text at the moment:
PHP 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 />' . $new_products->fields['products_model'] .$products_model .'<br />' .$products_price.'<br /><p>' );





