Changing attributes order in add listing and listing edit page

Please make sure that you have set the correct field names for other fields to change their order. For example, it will be $form['fields']['title']['_order'] for field Title. If you’re familiar with PHP basics please try to output the fields this way:

add_filter(
	'hivepress/v1/forms/listing_submit',
	function( $form ) {
        var_dump($form['fields']);
		die();
		return $form;
	},
	1000
);

This will output all the fields keys/field names on the front-end, so you’ll be able to use them with a sample snippet above to re-order any fields

Also, you can share your code snippet here if the issue persists