Add description to description field

Hi,

Please use this snippet:

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

		return $form;
	},
	1000
);

Hope it helps.

2 Likes