Quote Originally Posted by Ajeh View Post
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 ...
Hiya Ajeh!

I know some time ago you said you were working code to make the "Date Available" more usable. Namely, that if the product isn't yet available, you can show it, but not add to cart for checkout.
Did this make it into 1.5?

If not, would it require much modding to add?

Thanks!
Chaddro