Add description to "Discounts" field

Hi HivePress team,

Is there a snippet to add description to the “Discount” field?

Thank you.

Hi,

Sure, please use this PHP snippet:

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

		return $form;
	},
	1000
);
1 Like

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