bookingalgorithms
Forum Replies Created
-
Forum: Plugins
In reply to: [BA Book Everything] Optional Currencies per Booking ItemHello,
Thanks for your feedback!
We expect the “Request for price and details” option to be ready in the coming months.
Several currencies are supported by our “BABE Currency switcher” add-on. But it works differently.
It allows you to store tour prices in one base currency, set exchange rates for other currencies, and display a currency selector on the frontend so that the customer can select a currency.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Add a custom field on bookimg formHello,
As a starting idea yo can try using filter ‘babe_booking_form_input_fields’ from the BABE_html class (line 2301) to add new fields.
To store custom field values you need to hook into the \BABE_Order::sanitize_booking_vars method with the filter ‘babe_sanitize_booking_vars’ (line 2005).—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] How to disable Draft optionHello,
Draft orders are created only at the beginning of the checkout process, remain in this status if the checkout is not completed, and are deleted after some time by cron.
So it looks like it’s a cron issue on the site.
To solve the cron issue, you can deactivate the plugin and activate it again.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Tour with Hotel VariationHello,
You could try to implement your conditional price logic with the help of services post.
Say, you have a standard tour with a default price and overnight stay in Hotel A. Then you can create services “Hotel B” with price $1 that will be added to the default rate, “Hotel C” with price $2, etc.
If you assign those services to the room post they will be available to choose from the booking form.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Extra Services based on tourHello,
You have to create service type posts and then assign those services to the tour post as shown in documentation.
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] How to add custom categories for prices?Hello,
You could try to implement your conditional price logic with the help of services post.
Say, you have a standard room category that is included in default price. Then you can create services “room category 1” with price $1 that will be added to the default rate, “room category 2” with price $2, etc.
If you assign these services to the room post they will be available to choose from the booking form.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Erro ao adicionar + itemsHello,
If you don’t get new item in search results or on the page with [all-items] shortcode, please, make sure that the booking item is published and has defined “available from date”, “available to date”, “number of items” (default is 1), “maximum number of guests” and at least one rate with prices.
They are required to make things work properly.
You can find more about booking item settings in documentation.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Showing multi locations on mapHello,
Unfortunately, the plugin doesn’t support multiple pins on a Google map.
You have to create own implementation of the Google map section.
To place the custom html on the booking item page you can use one of the hooks of method \BABE_html::babe_post_content_tabs (class-babe-html.php:650)—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] single custom (one-time events, etc.)Hello,
For one time event, please, use (create) the booking category with “One time event” booking rule and then define “Available from Date” and “Available to Date”.
They are the “date of the event”—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Conflict with Google Map APIHello,
You have to set the option “Add google map functionality?” to “No” in the “BA Settings” menu on “Google map” tab
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Search form doesn`t return resultsHello,
Please, make sure that new taxonomy is added to the booking category of booking items, and booking items have available dates, prices and number of items defined.
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Custom field in checkout fieldHello,
The customization also depends on the theme code.
For example, if you use Triply theme, one more step is needed: add a new field name (in our example it’s a ‘new_field’) to the $args[‘meta’] array into the child theme checkout.php template file (around line 83).
Please, contact the theme authors about customization details.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] How to change language of the pluginHello,
Our products use standard WordPress localization in pot files, please, see more in the WordPress codex.
There is a popular Loco translate plugin which makes localization easier from the site dashboard.
You could use the Loco plugin also to translate BA Book Everything plugin texts. Please, note, according to codex you need to place both translation files ba-book-everything-***.po and ba-book-everything-***.mo files to /wp-content/languages/plugins/ directory.—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] show single event in different postsHello,
You can use the shortcode [all-items] for this.
It supports several params to filter booking objects on the page:- ids – booking item post ids, comma separated
- category_ids – term booking category ids, comma separated
- term_ids – term ids from custom taxonomies, comma separated
- per_page – items per page, int
- pagination – set to 1 to show pager (0 by default)
- sortby – ASC or DESC
- sort – one of price_from, rating, post_title, av_date_from
- without_av_check – set to 1 to show all items (0 by default)
- group_results_by_date – set to 1 to show items as a list ordered by tour date (0 by default)
- not_scheduled – set to 1 to show items without prices and schedule (0 by default)
Example: [all-items category_ids=”12″ per_page=”3″ pagination=”1″ sort=”price_from”]
—
Best Regards,
Booking Algorithms teamForum: Plugins
In reply to: [BA Book Everything] Remove ratesHello,
This feature has been available since BA Book Everything 1.4.27
Thank you for the request!—
Best Regards,
Booking Algorithms team