Add description to description field

Hi HivePress Team,

Is there a snippet to add description to the description field? I’ve found placeholder only.

Thank you.

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

Thank you Nikita, it works well.

1 Like

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

Hi,
I would like to complete the field “description” in the add listing form with more detail like “description ( … )”. Can you help me with it please ?

Many thanks !

Hi,

Please check the solution in this topic.