Add description to price on bookings confirm page

Hi,
Is there a snippet i can use to add info after the word price ? as we charge 5% to the buyers it would be good to be able to explain there why the price is higher then the booking listing.

Or can i turn that charge of and only have it display on the checkout page ?

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']['_price']['description'] = 'Custom text';

		return $form;
	},
  1000
);

Perfect thanks,
Is there a snippet to not show the price on that page as it also shows on the checkout page so prob not much point havning it displayed twice ?

Hi,

Sure, please use this PHP snippet:

add_filter(
	'hivepress/v1/forms/booking_confirm',
	function( $form ) {
		unset($form['fields']['_price']);

		return $form;
	},
	1000
);

Great, Thanks

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