Reorder "I agree to terms and conditions" field on the booking form

Hi HP Team,
I need a short snippet. I would like to reorder “I agree to terms and conditions” field on the booking form. Please note that this is for the booking update form and not the listing update form.
Screenshot 2023-02-16 at 10.33.59

Hi,

Please try this PHP snippet:

add_filter(
	'hivepress/v1/forms/booking_confirm',
	function( $form ) {
		$form['fields']['_terms']['_order'] = 123;

		return $form;
	},
	1000
);

Please note that it can require further customization.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.