Title on add listing and booking confirmation page

Please try this PHP snippet

add_filter(
	'hivepress/v1/routes',
	function( $routes ) {
		if(isset($routes['booking_make_details_page'])){
			$routes['booking_make_details_page']['title'] = 'custom title';	
		}

		return $routes;
	},
	1000
);
1 Like