<?php
add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		unset($form['fields']['images']);

		return $form;
	},
	1000
);