Add text to Add Details Page

Hi there,
is there a way to add custom text fields to the add details page?
Like above the accept terms field?

Hi,

Yes, please check the sample in this topic: Add description to price on bookings confirm page

​I hope this is helpful to you.

Great, thanks. What is the tag to use to add it before the terms accepting part?

I think I figured it out with this.

add_filter(
	'hivepress/v1/forms/booking_confirm',
	function( $form ) {
		$form['fields']['_terms']['description'] = 'Te lo hacemos fácil, puedes cancelar sin costo hasta 24 hs antes de tu cita';

		return $form;
	},
  1000
);

Any way to make the text bigger?

On that note, is there a way to add another accept X button on that page?

Hi,

Yes, it is possible, but it will require advanced customization.

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