Correct me if im wrong but is this right when searching for poet meta key a value in Wordpress ?
$args = array(
'post_type' => 'clientorders',
'meta_query' => array(
array(
'key' => 'installDDate',
'value' => $date1,
'compare' => '=',
),
),
);