Rearrange the term & condition in add listing

What is the php code to reorder the term and condition in submit listing page for marketplace? I had tried this code but i think this is not for marketplace extension.

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

		return $form;
	},
	1000
);

Hi,

Please use this hook hivepress/v1/forms/listing_submit

​I hope this is helpful to you.

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