How to add custom text

I would like to add custom text under the ‘book now’ button that says “Please keep all payments and communications inside the website…”

1 Like

Please try this PHP snippet but please note that it can require further customization

add_filter(
	'hivepress/v1/forms/booking_make',
	function ( $form ) {
		$form['footer'] = '<p>Please keep all payments and communications inside the website</p>';
		
		return $form;
	},
	1000
);

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