The price without /night

Hello, I’ve installed my Experthive theme and its associated plugins, including the Booking add-on. When I configure a product with a price, it displays, for example, 100.00/night. I want to remove the ‘/night’ and I can’t find where to modify it. I haven’t created any price attributes or any attributes with ‘/night’.

Thank you in advance.

je me répond à moi même, j’ai trouvé /days or night par contre mon calendrier est limité à la réservation sur 1 jour le 30 mars, why ?

Hi @BernardC,

You can remove this using the following code snippet:

<?php
add_filter(
	'hivepress/v1/models/listing/fields',
	function( $fields, $model ) {
		if ( isset( $fields['price'] ) ) {
			$fields['price']['display_template'] = '%value%';
		}

		return $fields;
	},
	1000,
	2
);

If you’re unsure how to add code snippets, please check out this article:

I hope this helps!

Edit: if the above snippet doesn’t work, kindly try the other suggestions I provided here:

Cheers,
Chris :victory_hand:

1 Like

Thanks for the info and code

Bernard

1 Like

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