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
This works, thank you!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.
Hi.
Just installed ListingHive and trying to start working with Hive press on a property listing page…
Until now all going ok. But just finishing having difficulty…
In the Reply to listing (plugin HivePress-message) a have the need to have two more fields…
1 for Phone number
2 fir e-mail
Does anyone can help me?
Welcome to the community!
I’m not HivePress staff, just happy to help.
If you use the Social Links extension you’ll be able to add these fields to vendor profiles and listing details. Or, alternatively you could add these fields as custom attributes.
I’m not on my computer at the moment, but in WP Admin, I think it’s under Listings > Attributes
or Vendors > Attributes
, depending on where you would like them to show.
I hope this helps!
Cheers,
Chris
Hi,
Please check the similar solution in this topic.