Add new field to "Apply" message

When a user applies for a job in the marketplace, is there a way to include more required fields that they have to submit along with a message? For example, can we include a URL link where they can attach a link to their LinkedIn page or another website?

Unfortunately, there is no simple solution to add fields to the message form. But as a possible solution please try to add a description to the message form with this PHP snippet

add_filter(
	'hivepress/v1/forms/message_send',
	function( $form ) {
		$form['description'] = 'Please put a link to your LinkedIn page or another website';

		return $form;
	},
  1000
);

Also, it is possible to add a file field to this form by enabling the Allow file attachments setting in HivePress/Settings/Messages

1 Like

This works, thank you!

1 Like

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