bookingalgorithms
Forum Replies Created
-
Forum: Plugins
In reply to: [BA Book Everything] Add custom field at checkoutHello,
You are right. You need one more hook to save custom field and add it to notification email:
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; }You are welcome!
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Add custom field at checkoutHello,
There are several hooks that you can use in a child theme for your tasks. As a starting solution, this can be:
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 */ function customtheme_babe_checkout_field_required($required_tag, $field_name){ if (field_name === 'new_field'){ $required_tag = 'required="required"'; } return $required_tag; }—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Remove Rating / Review from booking objectHello,
You can use this code in your child theme:
remove_filter( 'babe_post_content_before_tabs', array( 'BABE_html', 'babe_post_content_star_rating'), 40, 3);—
Best Regards,
Booking Algorithms teamForum: Themes and Templates
In reply to: [BA Hotel light] ShortcodesHello,
Yes, booking item shortcodes are supported in theme. Please, send us request by contact form so that we can check your site and help with issue.
Thank you,
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] booking formYou are welcome!
We have addons for PayPal, Stripe, Razorpay, YOCO, ePayco payment gateways. But you need to check the availability of payment systems in your region by contacting the payment providers. If you like to integrate another payment system, please, send us request by contact form.
Thank you,
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Booking with multiple optionsYou can’t do it with BA Book Everything in this way, sorry.
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] booking formHello,
The booking form should be added as a widget to a sidebar. The same goes for a search form and search filters on the search result page (https://ba-booking.com/ba-book-everything/documentation/search-form-filters-booking-form/).
Another way is programmatic, you can place the booking form wherever you need in the child theme:
echo BABE_html::booking_form();.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Getting a Unite GalleryError on Mobile DevicesHello,
It looks like a caching issue with a third party plugin.
Please, try to disable all caching plugins on the site and check the page. It should fix the issue.
Javascript optimization can cause problems in many plugins.Thank you,
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Booking with multiple optionsHello,
With BA Book Everything you can implement this in two ways:
1. Create one booking item post for “1 person per Quad” and another booking item post for “2 people per Quad”
2. Use one booking item post “Quad” and adjust prices based on number of people (see more in BA Docs)—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] NEED HELP SETTING UPHello,
It looks like you didn’t find our emails from October, 27. Perhaps you didn’t notice the email in your inbox, or it’s in a spam folder, please check your email. Just in case, answers to your questions:
- “Pay later” option is built into the BA Book Everything plugin
- The documentation about payment settings – https://ba-booking.com/ba-book-everything/documentation/online-payments/
- More about the Stripe API keys – https://stripe.com/docs/keys
Please, note, this is a BA Book Everything plugin support forum. About other products, like payment gateways, please contact us by email or via our site’s contact form. This topic should be closed as not a support question of the BA Book Everything plugin.
Thank you,
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] 2 database errorsHello,
All found issues “incorrect datetime value when using MySQL 8” are fixed in BA Book Everything v. 1.3.22
Thank you,
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] booking item not picked up on search resultsHello,
That was a bug in BA Book Everything plugin, it fixed now in version 1.3.18.
Thank you!—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Unable to add children to bookingHello,
That was a bug in BA Book Everything plugin, it fixed now in version 1.3.18.
Thank you!—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] dates from search not passed to search resultsHello,
That was a bug in BA Book Everything plugin, it fixed now in version 1.3.18.
Thank you!—
Best Regards,
Booking Algorithms teamForum: Themes and Templates
In reply to: [BA Hotel light] InvoiceHello,
Payment guarantees product updates and technical support for 1 year. After your license key expires, you can also use our products for as long as you need, with no restrictions other than updates and support.
—
Best Regards,
Booking Algorithms team