1304 comments found.
Hello. We have a problem because some reservations do not appear in the admin menu of “Transfers Booking”. For example: Woocommerce screenshot with 2 reservations: https://postimg.cc/dZ63NXNC Screenshot of Transfers Booking only reservation appears: https://postimg.cc/hXkmdkk4 Screenshots of the difference between the two orders in Woocommerce: Reserve that does appear: https://postimg.cc/tZJHH452 Reservation not appearing: https://postimg.cc/Z9JT2j3F
Hi,
Are you using a translation plugin and running your website in multiple languages by any chance? Also, what theme version and Transfers plugin are you running?
Yes, I use WPML. Theme version: 1.35 Transfers Plugin: 1.34
Yes, I use WPML. Theme version: v1.35 and Transfers Plugin: v1.34
Hello,
Please upgrade the theme and plugin to the latest versions. You will information about how to upgrade in the theme’s upgrade.txt file.
Hi,
4 years ago you published that you had on your mind an idea in order to introduce the availability of choosing by an autocomplete field the origin and the destination for the transfers instead opening the long list when someone has many destinations… I wonder if you have already introduced that on the theme and also if it’s possible to use the Google Autocomplete Address for pick-up point and drop-off point…
It is possible when choosing a round trip just to show you the type of vehicle including the price for go and back together instead of be forced to choose the vehicles for the first way and way back then?
Hi,
No, unfortunately these are not features of the theme. You are of course free to custom code such functionality yourself.
Thanks,
Hello, very interesting. I need for shuttle/shared car reservations. Is it possible to have a decreasing price? For example one passenger pays 70 $ and 2 pay 90 $ total (45 each person). And then is possible to let customer book only between 7:00 am and 9 pm? Thank you
Hello,
there are unfortunately no such features available at this time.
Thank you for your interest!
Hi do you offer customize i need location to be google map select for a selected country
I want to disable christmas holidays in datepicker. On December 24th, disable only until 2:00 p.m. How can i do this?
Hi,
That’s not available out of the box. You’d have to write custom code in wp-content/plugins/transfers-plugin/js/search.js to perhaps check for the current date inside the datepicker onselect function and then do your logic there.
//disable christmas day only
var disableddates = ["25-12-2021"];
function DisableSpecificDates(date) { var string
jQuery.datepicker.formatDate('dd-mm-yy', date); return
[disableddates.indexOf(string) == -1]; }
// DATE & TIME PICKER
$('.departure-date').datetimepicker({
minDate: serverDateTime,
beforeShowDay: DisableSpecificDates,
With this function I managed to disable holidays. It works, but if the holiday is “today” and you click on the “time” the holiday is enabled. You tell me to do something inside the datepicker onselect function. Please some simple code to disable holidays. Thank you.
Hello,
Please create a ticket at https://themeenergy.ticksy.com so our technical staff can assist you further.
Thanks,
I would like no one to be able to book in the next 2 days from the current date. how can I do this?
Hi,
Please adjust the setting in Appearance -> Theme options -> Search settings “Allowed search start times”
Yes, I know this configuration but it doesn’t work for some reason. I have done it, declaring the function just before “departure-date” and adding minDate: d1; manually and it works. I will be doing a clean install with the latest version of the theme shortly. Thanks.
Ok thank you
hi, today i updated this theme from version 1.3.1 to version 1.3.8. but after updating i can’t in any way change the copgright section at the bottom of the website. I write and save the text I want from the theme options, but the text there does not change. I also close the announcement text, it does not close. I’m having a problem after the update, can you help?
Hi,
Did you clear your browser cache before testing?
Thanks,
Are Adult, Child, Infant prices possible to set up?
No, only one set of prices (passengers) are supported. Seasonal prices are however supported.
Great works now!! Thanks. Does it comes with a quickstart?
Great to hear the issue is resolved.
https://themeenergy.com/themes/documentation/wordpress/transfers/ This is the theme documentation.Did reloading in another browser … (Safari) Still the same issue. 
I see from your other comment that the issue is resolved.
This is what I see after a search: We’re sorry, you are not allowed to proceed Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator.
If you believe you should be able to perform this request, please let us know.
RID: YZ5Y9ECSDBA0NSUJMEBHVVTZ
Hello,
Please try again at https://www.themeenergy.com/themes/wordpress/transfers
Thanks. The same issue on this link …
Hi,
Please try clearing your browser cache before testing.
Hi,
Can you see search results here? https://www.themeenergy.com/themes/wordpress/transfers/search-results/?dep=2021-10-30+00%3A00&p1=504&d1=497&p2=&d2=&ppl=1&trip=1Did clearing browser + Still the same problem from your link: https://www.themeenergy.com/themes/wordpress/transfers/search-results/?dep=2021-10-30+00%3A00&p1=504&d1=497&p2=&d2=&ppl=1&trip=1
Message: We’re sorry, you are not allowed to proceed Your request looks suspiciously similar to automated requests from spam posting software or it has been denied by a security policy configured by the website administrator.
If you believe you should be able to perform this request, please let us know.
RID: HM3OAEY1UI0JNXYCSB6ZLCUD
I have just reconfigured things. If you do not mind retrying and seeing whether my change in configuration has fixed the issue, I would really appreciated it.
Thanks,
No problem. Just did … issue is still there. Same message. 
I cant open de demo and make a search.
Hello,
Please try again at https://www.themeenergy.com/themes/wordpress/transfers
I’m reviewing the theme. Something caught my attention. “Select Pickup Location”, can we make this section according to the page order number, not alphabetically?
and multi-language option can be added?
Hello,
changing the order of the “Select Pickup Location” section would require a code tweak.
Yes, the theme is multi-language ready.
Thank you for your interest!
Hi,
You would need to edit wp-content/plugins/transfers-plugin/includes/plugin_post_types.php and modify function list_booking_entries by changing
$sql .= " WHERE transport_types.post_status = 'publish'";
to
$sql .= " WHERE transport_types.post_status = 'publish' AND bookings.woo_status = 'completed' ";
Thank, you please just know how to sort ID from newest to oldest.
$orderby = ‘Id’, $order = ‘DESC’ not work
You would need to change line 586 from
$sql .= $wpdb->prepare(" AND bookings.Id = %d ", $entry_id);
to
$sql .= $wpdb->prepare(" AND bookings.Id = %d ORDER BY bookings.Id DESC", $entry_id);
thank so much
Sorry, not work: $sql .= $wpdb->prepare(” AND bookings.Id = %d ORDER BY bookings.Id DESC”, $entry_id); I dont know
Now it works for me. wp-content / plugins / transfers-plugin / includes /admin/transfers_bookings_management_admin.php $ order =! empty ($ _ GET [“order”])? wp_kses ($ _ GET [“order”], ’’): ‘ASC’; to $ order =! empty ($ _ GET [“order”])? wp_kses ($ _ GET [“order”], ’’): ‘DESC’; Thank you.
Great to hear!
Hi,
Is it possible to restrict bookings prior to 24 hours and less? Because we’re having issues on operations when they book for the same day.
Hello,
there is the “Allowed search start times” setting available at Appearance > Theme Options > Search settings which can be used to prevent late bookings.
Thank you
hi, on the transfer search – I want to make the pickup and drop-off destinations in the dropdowns to appear in custom order (not in alphabetical order as it is now). How to change this?
Hello,
You would need to customize wp-content/plugins/transfers-plugin/includes/plugin_utils.php and the function build_destination_select_recursively in particular.
It currently calls list_destinations and sorts by title.
You could change that to menu_order and then make sure you add the following to your child theme functions.php file:
add_action( 'admin_init', function() {
add_post_type_support( 'destination', 'page-attributes' );
} );
That will allow you to edit each destination and add a number for the Order field that appears in Page attributes in the right hand side column.
This way you can set a custom order for your destinations in the dropdown.
Hi, Sometimes we take the bookings as total of 0 even the prices look normal until the checkout. How can we identify and fix the issue?
Hi,
What theme version are you using?
V1.30
Looks like it’s out of date. However, I didnot see any update notification on WP updates. How can I manually update?
Hi,
You will find upgrade instructions inside Transfers.zip/upgrade.txt
Thanks,
The Theme Does Not Support Multi-Currency We want a refund
Hello,
please refer to the Envato Market Refund Rules to check if you’re eligible for a refund. If so, you will also find instructions to request one there.
Thank you
Very Good Support. Thank you very much, we are very pleased, but can’t you help with multi-currency?
Hello,
please note that item support does not include services to modify or extend the item beyond the original features, style and functionality described on the item page. For tailoring the item to your specific requirements, it is recommended to use customization services.
Thank you
PRIVATE TICKET #2811818 !!! PLEASE !
Hi,
As per our terms and conditions we do not do technical support on weekends. Your ticket will be answered first thing Monday. Thank you for your patience.
Merhabalar Ticket Destek Olurmusunuz
PRIVATE TICKET #2811342
Hello,
Please note that as per our terms and conditions our technical support staff try and do all support within 24 hours of their submissions.
We also do not do support during weekends.
We thank for your patience while your ticket is in the queue.