Add description to price on bookings confirm page

Hi,

Sure, please use this PHP snippet:

add_filter(
	'hivepress/v1/forms/booking_confirm',
	function( $form ) {
		unset($form['fields']['_price']);

		return $form;
	},
	1000
);