• Resolved businessportfolios

    (@businessportfolios)


    Hello, please assist me with the following:

    1. Below the calendar is shows the available, booked and pending numbers. I have two dates booked, but it only shows one. How can I change it so that it shows the total of booked days, etc. for the month?

    2. I tested the booking form with another email address. I did not receive any confirmation regarding the booking.

    3. I want to customize the the following:
    – The text on the “send” button
    – The colour of the “send” button
    – I want to change the font used in the booking form to my theme’s font

    Looking forward to your assistance.

    Regards,

    Vivian

    https://wordpress.org/plugins/booking/

Viewing 1 replies (of 1 total)
  • Plugin Author wpdevelop

    (@wpdevelop)

    Hello.
    1) The numbers in the legend cells under calendar, its showing of “Today” date. You can deactivate of showing this number at the General Booking Settings page in Form section.

    2) Sometimes mail servers block emails, if the address “From” different from the domain of website, from where this email was sending. Its not really depend from the Booking Calendar. So please open the Booking > Settings > Emails page and recheck that field “From”, its have to the same as your website domain. For example: info@your-server.com and not like this your_email@gmail.com

    If you do not receive emails at all in any cases then please check this troubleshooting instruction http://wpbookingcalendar.com/faq/no-emails/ (the most probably you need to check the point #5 from this instruction).

    3) You can change the color of “Send” button in the ../{Booking Calendar Folder}/css/client.css file by adding this CSS:

    .booking_form_div .btn {
      background:#aaa;
    }

    also you can change the font in booking form by adding this CSS

    .booking_form_div,
    .booking_form_div label{
      font-family:Verdana;
    }

    The ability to change “Send” text in submit button possible only by customization of the PHP file of plugin.
    You can do this in this file ../{Booking Calendar Folder}/lib/wpdev-booking-class.php

    by customization this code:

    $my_form.='  <button class="btn btn-primary" type="button" onclick="mybooking_submit(this.form,'.$my_boook_type.',\''.getBookingLocale().'\');" >'.__('Send' ,'booking').'</button> ';

    Kind Regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Legend cells number and customization’ is closed to new replies.