How to change description label

Is there a way to change the description. Add something. Where is the description setting for the listing. I want to create several attribute fields using textarea. I want to change the name of the description field, how to do it.

Hi,

Please use this PHP snippet:

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

		return $form;
	},
	1000
);

​I hope this is helpful to you.

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