Discussion on Hotel Master Booking WordPress

Discussion on Hotel Master Booking WordPress

Cart 7,185 sales
Recently Updated
Well Documented

GoodLayers supports this item

Supported

This author's response time can be up to 1 business day.

1882 comments found.

Hi, I want to remove the Woo Commerce breadcrumbs from the Woo Commerce’s default Shop main page and from all individual product pages as well.

I’ve tried to add Woo Commerce’s default code snippet for this in the theme’s functions file but the code snippet is not working with Hotel Master theme. Is there any other way to remove the Woo Commerce breadcrumbs in this theme?

Hello,

You can remove them by adding this CSS in Theme Options Panel > General > Page Style > Additional Style option:

.woocommerce-breadcrumbs { display: none; }

Hi, I’ve been using your excellent theme for some years now. But I’m facing a strange issue. I’ve added on my homepage (https://fagunia.com) our media mentions in the form of a gallery of images with each image linking to a specific url using the Slide Link to url option of the gallery.

But when I click on any image in the gallery, the url each image is linked to is not clickable. I need to right click on the image and select open in a new tab for the url to open, which works only on desktops, in mobiles this option also doesn’t work. How can I make the image links in the gallery clickable on direct click both on desktop and mobile devices?

I had faced this problem a couple of years earlier too but with a theme update it got resolved automagically. I’m using the latest Hotel Master theme.

Can you please send wp access + ftp access through the form in this page > http://themeforest.net/user/GoodLayers ?

Please also copy the message into the form as well so we can recognise your case. We will help inspecting directly.

Thanks. Have sent you the message with the details through the form with the above message included.

Dear Goodlayers Team,

I am writing to inquire about the possibility of implementing custom pricing features in your booking tool. Specifically, our establishment needs to apply different prices depending on the occupancy and duration of the stay. Here are the pricing details we would like to implement:

For a room type A with 2 people:

- 2 nights: €104 per night (€208 total for the stay) - 1 night: €169

For a room type A with 1 person:

- 1 night: €149

Is it possible to set up such pricing rules with your current booking tool? If so, could you please provide guidance on how to achieve this? Additionally, if this requires customization of your software, could you inform us about the feasibility and any associated costs?

Thank you very much for your assistance. I look forward to your response.

Best regards,

Thomas

Hello,

It is not possible to add the prices for durations separately, these will be calculated from the base price. You can add a discount on consecutive stays as shown in the Hotel System > Pricing section here: https://demo.goodlayers.com/document/hotelmaster/#pricing

You will have to customize the theme with the help of a freelancer if you need more control over these pricings.

If this might interest some people, here’s a rather simple way to exclude the number of additional adults/children from the total calculation when applying the discount based on duration.

Create and place a .php file in the wp-content/mu-plugins folder with the following code:

<?php // wp-content/mu-plugins/webedia-gdlr-overrides.php

if ( ! function_exists(‘gdlr_get_booking_price’) ) { function gdlr_get_booking_price($option){ $ret = array( ‘adult-num’=>0, ‘child-num’=>0, ‘weekday-night’=>0, ‘weekend-night’=>0, ‘ss_weekday-night’=>0, ‘ss_weekend-night’=>0, }

'base'=>0, 'base-weekend'=>0,
        'adult'=>0, 'adult-weekend'=>0,
        'child'=>0, 'child-weekend'=>0,    
}
'ss_base'=>0, 'ss_base-weekend'=>0,
    'ss_adult'=>0, 'ss_adult-weekend'=>0,
    'ss_child'=>0, 'ss_child-weekend'=>0,
);
'cnd'=>0, 'cnd-night'=>0, 'cnd-discount'=>0,
'sub-total'=>0,
'total'=>0
// get the exceeding adult and children number
$room_base_num = intval($option['room-base-price-number-people']);
$adult_num = intval($option'data');
$child_num = intval($option'data');
if( $room_base_num >= $adult_num ){
    $room_base_num = $room_base_num - $adult_num; 
    if( $room_base_num < $child_num ){
        $ret['child-num'] = $child_num - $room_base_num;
    }
}else{
    $adult_num = $adult_num - $room_base_num;
    $ret['adult-num'] = $adult_num;
    $ret['child-num'] = $child_num;
}
// get the loop (date) counter
$from = new DateTime($option'data');
$to = new DateTime($option'data');
$interval = new DateInterval('P1D');
$periods = new DatePeriod($from, $interval, $to);
// calculate the price
// 1 for monday 7 sunday
$workingDays = array(1, 2, 3, 4, 5);
$ss_prices = gdlr_get_ss_array($option);
foreach($periods as $period){
    $weekday = (in_array($period->format('N'), $workingDays))? true: false;
}
$special_season = false;
foreach($ss_prices as $ss_price){
    if( gdlr_is_ss($period->format('Y-m-d'), $ss_price) ){
        if($weekday){
            $ret['ss_base'] += floatval($ss_price['bpwd']);
            $ret['ss_adult'] += $ret['adult-num'] * floatval($ss_price['adwd']);
            $ret['ss_child'] += $ret['child-num'] * floatval($ss_price['cpwd']);
            $ret['ss_weekday-night']++;
        }else{
            $ret['ss_base-weekend'] += floatval($ss_price['bpwe']);
            $ret['ss_adult-weekend'] += $ret['adult-num'] * floatval($ss_price['adwe']);
            $ret['ss_child-weekend'] += $ret['child-num'] * floatval($ss_price['cpwe']);
            $ret['ss_weekend-night']++;
        }
        $special_season = true;
        break;
    }
}
if( !$special_season ){
    if($weekday){
        $ret['base'] += floatval($option['room-base-price']);
        $ret['adult'] += $ret['adult-num'] * floatval($option['adult-price-weekday']);
        $ret['child'] += $ret['child-num'] * floatval($option['children-price-weekday']);
        $ret['weekday-night']++;
    }else{
        $ret['base-weekend'] += floatval($option['room-base-price-weekend']);
        $ret['adult-weekend'] += $ret['adult-num'] * floatval($option['adult-price-weekend']);
        $ret['child-weekend'] += $ret['child-num'] * floatval($option['children-price-weekend']);
        $ret['weekend-night']++;
    }
}
// calculate total price
$ret['total']  = $ret['base'] + $ret['base-weekend'] + $ret['adult'] + $ret['adult-weekend'] + $ret['child'] + $ret['child-weekend'];
$ret['total'] += $ret['ss_base'] + $ret['ss_base-weekend'] + $ret['ss_adult'] + $ret['ss_adult-weekend'] + $ret['ss_child'] + $ret['ss_child-weekend'];
$ret['sub-total'] = $ret['total'];
// ----- CND (modifié : remise calculée sur chambre seule) ------
if( !empty($option['consecutive-night-discount']) ){
    $stay_period = intval($option'data');
}
// -----------------------------------------
$night_no = 0;
$discount = 0;
$cnds = json_decode($option['consecutive-night-discount'], true);
if (is_array($cnds)) {
    foreach( $cnds as $cnd ){
        if( $stay_period >= intval($cnd['night']) ){
            if( intval($cnd['night']) > $night_no ){
                $night_no = intval($cnd['night']);
                $discount = floatval($cnd['discount']);
            }
        }
    }
}
if( $discount > 0 && $night_no > 0 ){
    $ret['cnd-night']    = $night_no;
    $ret['cnd-discount'] = $discount;
}
// NOUVEAU : on limite la base de calcul de la remise à la valeur "chambre" 
$base_only_total =
    floatval($ret['base']) +
    floatval($ret['base-weekend']) +
    floatval($ret['ss_base']) +
    floatval($ret['ss_base-weekend']);
// si pas de base (cas extrême), on ne casse rien
if ($base_only_total > 0) {
    $ret['cnd']   = ($base_only_total * $discount) / 100;
    $ret['total'] -= $ret['cnd'];
    if ($ret['total'] < 0) { $ret['total'] = 0; }
}
return $ret;

Hi!

I’m interested in buying your theme, but I have a question. How does compatibility plugins below looks like? • WPBooking System • MotoPress • Maestrel

Are there any known issues? Will the integration with those plugins be possible?

Thanks in advance for your help.

Best regards!

Hi,

First of all, Thanks for your interest :)

Unfortunately, it’s not working with those plugin. We use our own booking system in this theme.

Hello. Congratulations on your work, I have seen your portfolio and I think it is incredible. I have questions before purchasing your theme:

We need a hotel booking WordPress theme with booking and calendar functionality. The website is for a small Rural Hotel (or Rural Accommodation) with three rooms. The requirements are:

1 – Be compatible and synchronize with booking sites such as TRIVAGO, BOOKING.COM, etc. We have seen that it is compatible with Air BnB, VRBO…

2 – Integrated reservation system

3 – Possibility of editing reservations by room, by number of people. (the price of the room varies depending on the number of people)

4 – Possibility of adding a section to select PETS (dogs, cats, I could do this using php)

5 – What payment gateways does it support?

I’m sorry to ask so many questions, but I want to make sure before purchasing a product. Good luck with sales

Our Rural Accommodation HOUSE is only rented to the same group of people, and depending on the number of guests the price will be one price or another. The Rural Accommodation HOUSE is only rented to one person, who can bring 7 more companions, 7 more people.

Depending on the number of people added, the rental price will change. The reservation must be like this:

a) one room (1 or 2 people), and reservations are no longer accepted for the rest of the rooms.

b) 2 rooms (2, 3 or 4 people), and reservations are no longer accepted for the other room.

c) book the 3 rooms (3, 4, 5 or 6 people)

Do you understand what our room system is? Can we set proportional prices for this reservation system? Do you understand what I want to achieve? Even if the reservation is only for 1 or 2 people, the reservation price cannot be the same for 1 or 2 people as for 6 people, although reservations must be closed, regardless of the number of guests.

This can work if you create a single ‘room’ for the accommodation, similar to what we’ve done on the apartment demo: https://demo.goodlayers.com/hotelmaster/myapartment/

The pricing will work if the increment is same for each person after the base price.I gave an example of this pricing in my last comment. This will not work if you need to set a custom price depending on the people added.

Thank you for your dedication. I do not want to waste your time.

I don’t understand the Manual system that you propose very well, I don’t know if it is due to the Google Translate translations, but it is not clear to me.

Therefore, I apologize for wasting your time with my questions.

Maybe your topic is useful for my needs, but since it is not very clear to me, I will continue searching on Codecanyon. We’ll see you in the future, you have a very good portfolio and I’m starting to develop websites. Thanks and good luck with sales

It is possible to synchronize Airbnb calendars and other systems (airbnb booking), this is done automatically from time to time.

Hello,

Thank you for your interest :)

Yes, you can automatically sync bookings with other calendars using the ical link option: https://demo.goodlayers.com/document/hotelmaster/#using-ical

is this a bug? page categories was gone https://snipboard.io/36EvQK.jpg please help

Hi,

Could you deactivate all plugins ( except goodlayers ) and test this again ?

If the problem still persists, could you provide your wp-admin account back via goodlayers profile page so we can investigte this.

https://themeforest.net/user/goodlayers

Thank you.

Hi could you please check my ticket.. its very urgent client is waiting..

Hi,

Please check the ticket.

Thanks!

Greetings, I have a hostel and a camper area.

I have 3 needs:

1) sell 10 daily beds with various price ranges (I don’t need them rooms)

2) I have 5 daily camper sites to see.

3) I have a hour camper zone to be divided into 12 2-hour appointments in a single day (e.g. from 9-11, 11-13, 13-15, 15-17, 17-19 etc.).

I need all 3 needs not to overbook and everything to work with woocommerce payments.

Can the plugin work for me? Thank you

Hello,

1. You can use the hostel option to sell beds: https://demo.goodlayers.com/hotelmaster/hostel/

2. There’s no particular option to sell site visits/tours like these, you can rename rooms and sell them or use one of our themes meant for selling tours:

https://themeforest.net/item/hotale-hotel-booking-wordpress/38017003/ https://themeforest.net/item/travel-tour-travel-tour-management-system-wordpress-theme/19423474

3. Sorry, there’s no option to sell hourly appointments in this theme.

Woocommerce payments is not supported in this theme, but it works on the other two themes.

Greetings, I have a hostel and a camper area.

I have 3 needs: 1) sell 10 daily beds with various price ranges (I don’t need them rooms) 2) I have 5 daily camper sites to see. 3) I have 1 workstation to be divided into 12 2-hour appointments in a single day (e.g. from 9-11, 11-13, 13-15, 15-17, 17-19 etc.).

I need all 3 needs not to overbook and everything to work with woocommerce payments.

Can the plugin work for me? Thank you

Hi

Presale Question Does this theme meet my requirements?

I have identical rooms Total 42 rooms.

2 Dormitory Rooms – 8 persons can accomodate in 1 room 26 Deluxe Rooms – 2 person can accomodate in each room 14 Executive Rooms – 2 person can accomodate in each room

Extra one Bed in 40 rooms can be accommodated at extra cost total 42 rooms

1. please check my requirement – https://snipboard.io/7osnym.jpg

2. Instead of Room-based Pricing.. Is there Person-based Pricing..?

3. in 1 Dormitory room, 8 people can be accommodated. So if 6 People Book a Dormitory room. Still, there is room for 2 more Guests.

Now can I show Guests that there is space for 2 more Guests in the Dormitory room and let them book..?

4. Instead of Room-based Pricing.. Is there Person-based Pricing..?.

5 Does this theme have an availability calendar..? If some rooms are booked does it show in the calender that in those days rooms are not available..?

Hello,

Thank you for your interest in our theme :)

1. Yes, this is possible.

2. 4. We have both, this is guest/bed based pricing: https://demo.goodlayers.com/hotelmaster/hostel/ and this is room based pricing: https://demo.goodlayers.com/hotelmaster/

3. Yes, that’s possible in the hostel setup.

5. Yes, you can see it on the homepage on the above links. Dates in this calendar will be blocked if all rooms are booked on that certain date.

how do i change the preloader image

Can you please submit ticket in our support website? Our dev and supporters only provide support in there, not here :(

Please note that, Right now, all support will be conducted through https://support.goodlayers.com/(Purchase code can be found here : https://support.goodlayers.com/purchasecode.png )

Thank you very much! :)

Hello ! I’m looking for a theme for booking mountain appartment, but i need a booking system by weeks only (from saturday to saturday), with price per week. Does your theme offer this function ?

Hello,

Thank you for your interest. Sorry, weekly bookings are not possible :(

Hi,

I don’t receive booking reservations notifications anymore and dates are not blocked in the calendar anymore which is a big problem.

Please help.

Hello,

Sorry for the inconvenience.

We’ve replied to your ticket about this, please continue there.

Thanks.

Hi,

I am looking for a solution to list Coliving Spaces and their rooms on a third party website.

The plugin should be able to connect to the Coliving booking system (calendar? CRM?) to get the available rooms.

Important is also that there will be a 10% commission charged for each booking.

The booking fee, excluding the commission, should be transferred to the Coliving.

How to deal with changes and cancellations? Is there a solution for this in the plugin?

Kind Regards Elias

Hello,

Thank you for your interest in our theme :)

You can connect bookings with other systems if they support sync using ical.

Sorry, it is not possible to charge a commission or transfer the booking fee to other systems. Cancellations and changes have to be handled manually.

Hello, I have a presale question. I have 5 different apartments in booking and airbnb can I sync them with iCall. Thanks in advance

Hello,

Yes, It is possible to if you have one apartment of each type.

Hi Is it possible to use the booking functionality of this theme without actually installing the theme? I like the look of the booking pages and would like to integrate them into my site without losing my current theme.

Hi,

Sorry, that’s not possible.

We have a different plugin that can be used with any theme: https://codecanyon.net/item/tour-master-tour-booking-travel-wordpress-plugin/full_screen_preview/20539780

Una pregunta ¿se puede subir la cantidad de noches mostradas en el desplegable del buscador? por ejemplo: por defecto pone 9 y yo quiero poner 15. Muchas gracias.

Claro que lo entiendo, es justo. :( ¿Tenéis alguna oferta o promoción por navidad?

Unfortunately, we don’t have it currently :/

Please also check your email. I just replied your email.

Thanks!

Hi, I’ve been using your excellent theme for some years now. But I’m facing a strange issue. I’ve added on my homepage (https://fagunia.com) our media mentions in the form of a gallery of images with each image linking to a specific url using the Slide Link to url option of the gallery.

But when I click on any image in the gallery, the url each image is linked to is not clickable. I need to right click on the image and select open in a new tab for the url to open, which works only on desktops, in mobiles this option also doesn’t work. How can I make the image links in the gallery clickable on direct click both on desktop and mobile devices?

Could you make sure you have error logging enabled: https://wordpress.com/go/tutorials/set-up-wordpress-error-logs/

Feel free to send the WordPress and FTP username-password so we can do this for you: https://themeforest.net/user/GoodLayers

Many thanks for your help. Once I updated to WP 6.4.1 and then did the theme update, everything worked fine!

Good to hear that, let us know if you need help with anything else :)

HI. I’m trying to change the background of the logo in the mobile version but I don’t know where to go anymore. I tried on the Hotel Master Elements Color panel but failed. Among my plugins I also use Elementor and I thought there was some setting but I couldn’t find anything. Thank you

It didn’t work unfortunately.. www.micasaestucasabandb.com

Could you try adding this custom css in Theme Options Panel > General > Page Style > Additional Style instead:

@media only screen and (max-width:767px){ .body-wrapper.gdlr-header-transparent .gdlr-header-inner { background-color: #bdd6e0; }}

You can change the color code in this css.

I solved! Thank you very much for your support..

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey