How to change position "upload image" on listing submit page

Hi team,
how to change the position of the button “upload image” below title attribute?

Tnx
Federico

1 Like

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/listing_submit',
	function( $form ) {
		$form['fields']['images']['_order'] = 25;

		return $form;
	},
	1000
);
1 Like

Tnx
SOLVED

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