Forum Replies Created

Viewing 15 replies - 31 through 45 (of 115 total)
  • Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    You can create booking rule with option “Pay deposit or full amount (the customer will choose)” as shown in the documentation.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    You should activate the option “Add checkout fields for all guests” in required booking category in order to show name fields for all participants on the checkout.
    Please, note, some theme authors override the functionality of our plugin, if so, you can also contact the theme author for further assistance.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    Sure, please, use shortcode [babe-booking-form] on the product page.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    You can use the search form builder to customize the search form of the BA Book Everything plugin.
    Please, note, some theme authors override the functionality of our plugin, if so, you can also contact the theme author for further assistance.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    Sure, WordPress allows you to use any page as a home page as described in official WordPress documentation.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    The plugin does not have a special “print orders” function.
    The add-on BABE Backoffice has PDF invoice feature, but you have to print out each invoice one at a time.
    And it doesn’t have export orders option.
    Therefore, it is difficult to recommend this solution for your request, sorry.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    The currency switcher add-on is currently in the development.
    We expect release in August.
    You can also send us a request on our site so that we can notify you when the plugin is ready.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    You can use argument term_ids and specify term IDs in the shortcode to filter tours by taxonomy terms:
    [all-items term_ids="1,2,3"]


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    The discount applies to all prices if the current date is between the specified ones. It’s like a total sale for any item if the client make reservation in the specified dates.
    To set special price only for July you should create new rate for the booking object whith appropriate “date from” and “date to” values.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    You need to place in the child theme functions.php the custom code like in this example (edit it as you need):

    add_filter('babe_checkout_args', 'customtheme_babe_checkout_args', 10, 2);
    /**
     * Add checkout fields
     */
    function customtheme_babe_checkout_args( $args_meta, $args ) {
        $args_meta['new_field'] = isset($args['meta']['new_field']) ? $args['meta']['new_field'] : '';
        return $args_meta;
    }
    ////////
    add_filter('babe_checkout_field_label', 'customtheme_babe_checkout_field_label', 10, 2);
    /**
     * Add checkout field title
     */
    function customtheme_babe_checkout_field_label( $field_title, $field_name ) {
        if ($field_name === 'new_field'){
           $field_title = __('Field Title', 'textdomain');
        }
        return $field_title;
    }
    ////////
    add_filter('babe_checkout_field_required', 'customtheme_babe_checkout_field_required', 10, 2);
    /**
     * Required tag for checkout field. Use it only if you need to make field required
    */
    function customtheme_babe_checkout_field_required($required_tag, $field_name){
       if ($field_name === 'new_field'){
          $required_tag = 'required="required"';
       }
       return $required_tag;
    }
    ///////////////////
    add_filter('babe_sanitize_checkout_vars', 'customtheme_sanitize_checkout_vars', 10, 2);
    /**
     * Add fields to sanitize checkout vars method
     */
    function customtheme_sanitize_checkout_vars( $output, $arr ) {
    
        $output['new_field'] = isset($arr['new_field']) ? sanitize_text_field($arr['new_field']) : '';
        return $output;
    }
    /////////////////////
    


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    There is no way to implement such a booking scenario now, sorry.
    The “Booking Category” used to setup same rules for several booking items (tours etc.)
    Each booking object post has its own reservation calendar.
    To implement AM and PM options in charter you can use standard “Tour” booking category in boat post and setup two available start times, say, 9-00 AM and 3-00 PM.
    So, the clients will be able to book AM or PM tour. But for all tour they will need to book AM and then to book PM tour for the same date.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    The booking form is a WordPress widget, you should add it on the site page in needed widget area.
    Please, check the plugin documentation for details.


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    Thank you for reporting the issue!
    The issue is fixed, please, update the BA Book Everything plugin to the latest version.

    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    This is a theme related issue, please, contact the theme authors for the help.
    Also for the Triply theme you can try to use this code in your child theme:

    add_filter('booking_update_cateogries_object', 'triply_booking_update_cateogries_object', 10, 2);
    function triply_booking_update_cateogries_object($args_cat, $prefix) {
    $args_cat = array (
       'name' => __ ('Select category to setup other post fields', 'triply'),
       'id' => $prefix.BABE_Post_types::$categories_tax,
       'taxonomy' => BABE_Post_types::$categories_tax, // Enter Taxonomy Slug
       'type' => 'taxonomy_select',
       'show_option_none' => false,
       'text' => array (
          'no_terms_text' => __ ('Sorry, no terms could be found.', 'triply')
       )
      );
    return $args_cat;
    }


    Best Regards,
    Booking Algorithms team

    Plugin Author bookingalgorithms

    (@bookingalgorithms)

    Hello,

    We recently added support for the WPML plugin, so you can use WPML for a multilingual site. Static texts can be translated with the included * .pot file using many tools like Loco translate plugin etc.


    Best Regards,
    Booking Algorithms team

Viewing 15 replies - 31 through 45 (of 115 total)