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