Cool, I did this and added code to listing-success.php.
This is what I came up with, it might not be pretty but it works.
////////////////
global $wpdb;
$pid = $_GET[‘pid’];
$date_has_image = current_time( ‘mysql’ );
$date_no_image = date(‘mysql’,(strtotime ( ‘-30 days’ , strtotime ( $date) ) ));
$image= $wpdb->get_var(“SELECT featured_image FROM wp_geodir_gd_place_detail WHERE post_id=’$pid'”);
if ($image!= “” && $image!= NULL && $image!= “/path/to/standard/image/set/in/gd/options.jpg”) {
$wpdb->query($wpdb->prepare(“UPDATE wp_posts SET post_date=’$date_has_image’ WHERE ID=’$pid'”));
}
else {
$wpdb->query($wpdb->prepare(“UPDATE wp_posts SET post_date=’$date_no_image’ WHERE ID=’$pid'”));
}
////////////////
Thanks for the help.