Increase Max Guests Number
The max number of guests for a particular room you can set is 10. To increase that number paste this code in functions.php:
function hotelier_custom_max_guests_limit() { return 20; } add_filter( 'hotelier_max_guests', 'hotelier_custom_max_guests_limit' );