Change field name

image
How do I change the GUESTS to NUMBER OF APARTMENTS?

Followed the above link and it worked

add_filter(
	'hivepress/v1/forms/booking_make',
	function( $form ) {
		$form['fields']['_quantity']['label'] = 'Number of Apartments';

		return $form;
	},
	1000
);

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