Remove calendar import / export field from listing submit

Hello HivePress Team!

When exporting / importing calendar option is enabled it is also shown in the listing submit page. How can we remove it from listing submit page? It would be great that if you guys provide the code snippets or necessary information to write our own. Have a lovely day! We also solved stripe issue, now its enabled and working for all the countries that is supported I will share it with the community soon!

Hi,

Please use this PHP snippet:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		unset($form['fields']['booking_import_url']);
		unset($form['fields']['booking_export_url']);

		return $form;
	},
	1000
);

​I hope this is helpful to you.