Add placeholder text in the Notes of the Request to book

Is there code to add placeholder text in the Notes of the Request to book?

Hi,

Please use this PHP snippet How to add custom code snippets - HivePress Help Center :

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

		return $form;
	},
	1000
);

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