Add a description to submit-request/details

Hello!
For submit-listing/details/ I used:

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

		return $form;
	},
  1000
);

but I don’t find how to do the same thing for submit-request/details/.
How to?
Tnx

Please try using the same snippet, but with request_submit instead of listing_submit.

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