Try those filters, one for hidding in the submit form and the other to hide any image in the listing:
add_filter(
'hivepress/v1/forms/listing_update',
function ($form){
unset($form['fields']['images']);
return $form;
},
1000
);
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'listing_images' => [
'type' => 'content',
],
],
]
);
},
1000
);