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
);