I'm using a batch upload for my products - some of which aren't in stock for several months but are showing in the Upcoming Products section on my site.
Is there any way of restricting the Upcoming Products to say, 1 month?

Am i right in thinking that this is the code to edit from the lookup file???

Code:
// build date range for upcoming products
  function zen_get_upcoming_date_range() {
    // 120 days; 24 hours; 60 mins; 60secs
    $date_range = time();
    $zc_new_date = date('Ymd', $date_range);
// need to check speed on this for larger sites
//    $new_range = ' and date_format(p.products_date_available, \'%Y%m%d\') >' . $zc_new_date;
    $new_range = ' and p.products_date_available >' . $zc_new_date . '235959';

    return $new_range;
  }