You could customize the products listing code with your templates and overrides of:
/includes/modules/product_listing.php
using the code in
RED:
Code:
$lc_text .= '<br />' . (zen_get_show_product_switch($listing->fields['products_id'], 'ALWAYS_FREE_SHIPPING_IMAGE_SWITCH') ? (zen_get_product_is_always_free_shipping($listing->fields['products_id']) ? TEXT_PRODUCT_FREE_SHIPPING_ICON . '<br />' : '') : '');
// bof: add date available
$products_date_available = zen_products_lookup($listing->fields['products_id'], 'products_date_available');
if ($products_date_available > date('Y-m-d H:i:s')) {
$lc_text .= '<br />' . 'Available:' . zen_date_short($products_date_available);
}
// eof: add date available
break;
case 'PRODUCT_LIST_QUANTITY':
This example puts the date after the price ...