Forum Replies Created

Viewing 15 posts - 1 through 15 (of 158 total)
  • Author
    Posts
  • in reply to: Custom PHP comments #36095

    Luke
    Keymaster

    Currently it is not a full featured code editor. Block comments are not allowed.

    in reply to: Form Builder: HTML Field & Notifications #27220

    Luke
    Keymaster

    Hi,

    I am sorry for the late reply. We don’t monitor the forum everyday. Normally we will help you quickly if you submit a ticket.

    The design purpose of HTML field is to provide instructions for the booking form. It is not for input fields like select, input, etc. Currently the solution is to use three Dropdown fields on the form.

    in reply to: DreamHost Permission Error #26528

    Luke
    Keymaster

    Please update to the newest version which has fixed this security issue. Thanks for your reporting.

    in reply to: "is undefined in namespace" on staging #25532

    Luke
    Keymaster

    Hi Todd,

    Could you delete and reinstall the plugin on the new website? It seems that there are missing files.

    in reply to: Google Cal sync and providers across time zones #25321

    Luke
    Keymaster

    Hi Eric,

    We appreciate your enthusiasm greatly. However, timezone involves several other issues like available timeslots calculation, disabling fully booked days, etc. All these implementation assumes both clients and providers live in the same timezone. We know it is a wrong assumption for some business scenarios and we will rewrite the core to fix it in the future. But it is hard to achieve your goal based on the current code base. We are sorry for that. Thanks for your understanding.

    Luke

    in reply to: Staging vs Production site appointments #25101

    Luke
    Keymaster

    We don’t know a better solution either. Like our forums, if we push the staging site back to the live, some topics will be missing. So we just tried to make the staging period as short as possible.


    Luke
    Keymaster

    Our customer has submitted a ticket regarding this issue. Thank you anyway!


    Luke
    Keymaster

    Hi Phil,

    Thanks for reporting this issue. Actually it is only required in the business editor or above.
    We found that Google API lib registered the autoloader function without checking if it existed. So We decide to include the google api lib manually. This will resolve the conflict with the plugins using this lib too. We will send our customer the new package. You don’t need to do anything on your side.

    Luke

    in reply to: Auto select a location or provider? #23528

    Luke
    Keymaster

    Auto-populate booking form and changing location, service and provider order cannot be achieved with the current version. We have added them in our development list.

    in reply to: Error when updating provider #23522

    Luke
    Keymaster

    I am sorry I misunderstood the issue. We will remove PHP notices as possible as we can in the future versions.

    in reply to: Mollie payment, prepayment #23361

    Luke
    Keymaster

    I am sorry that we won’t support it in the near future. However, we will figure out a way that integration with new payment gateways can be implemented in an easier way.

    in reply to: client form hook/filter #23197

    Luke
    Keymaster

    Hi Matt,

    You can use the birchschedule_view_bookingform_get_fields_html action hook and choose the priority of 30. The code is like the following.

    
    add_filter( 'birchschedule_view_bookingform_get_fields_html', 'YOUR_FUNCTION', 30);
    
    in reply to: [BUG] Product attributes override #22943

    Luke
    Keymaster

    Could you submit a ticket? We will give you a quick fix build.

    in reply to: Public Calender #22892

    Luke
    Keymaster

    Hi Guno,

    It seems there is something wrong with the texts around the shortcode in that page.

    Could you submit a ticket with access to your wp admin? Our developer will look into it.

    in reply to: Change start time in daily view #22265

    Luke
    Keymaster

    Please add the following code in Custom Code > PHP

    
    <?php
     
    add_filter('birchpress_util_get_fullcalendar_i18n_params', 'birchpress_cc_util_get_fullcalendar_i18n_params', 20);
     
    function birchpress_cc_util_get_fullcalendar_i18n_params($params) {
     $params['minTime'] = '7:00am';
     $params['maxTime'] = '6:00pm';
     return $params;
    }
     
    ?>
    
Viewing 15 posts - 1 through 15 (of 158 total)