Change the format and order of the fields in the "job submission" page

I created custom attributes for the job submission page, but those attributes appear before the main “Description” field in the form. For example, I want the description field to be at the top of the page and the other job attributes to fall underneath (i.e. employee type, hourly commitment, experience required, etc…). Also, is there a way to add subtext to the Description field to describe what it is?

  1. Please try this PHP snippet to change the description field order Change the description field order in the listing edit form #hivepress #listings · GitHub

  2. Please try this PHP snippet to add a description to the description field

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['description']['description'] = 'custom text';

		return $form;
	},
	1000
);

this worked, thank you!

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