Taskhive post a request description field

How do i add text in the description field to give inspiration to users in what details they should include?

Please try this PHP snippet

add_filter(
	'hivepress/v1/forms/request_update',
	function( $form ) {
		
		if(isset($form['fields']['description'])){
			$form['fields']['description']['placeholder'] = 'custom text here';	
		}

		return $form;
	},
	1000
);
2 Likes

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