1303 comments found.
Hello. Is there a way to prevent a booking within a 24 / 48 hour window? Is there a way to prevent double bookings?
Hi,
Sure, if you create a ticket on our support site https://themeenergy.ticksy.com after purchase, our support staff will help you with a code snippet to prevent bookings within period X.
The system already takes care of reducing the number of available seats/cars as things are booked thus preventing double bookings.
Thanks,
Thank you for the update!
You are welcome.
Hi, We’re using an app for transfer operations and we want to export online transfer bookings from our site to that app automatically. Application owners asked if we can someshow send booking data via XML from the theme? Or as a second option they asked if we can remote access to MySQL data tables. Thanks.
Hi,
There is no such feature out of the box. You would have to instruct your developers to create a rest api endpoint where they would expose the custom table data for your external app to consume.
Thanks,
Hi,
Thank you for helping me previously. But I would need your help again. Is there a way that I can full-width the white container and remove the space between the header and content? https://prnt.sc/o3xol7
thank you so much!
Hello,
you can do so with the following css:
.page-template-default .main > .wrap {width:100%;max-width:100%;}
.page-template-default .main > .wrap > .row {margin:0;}
.page-template-default .hentry {background:none;padding:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:0;}
hi, is it possible enter in wp-admin on live demo?
Hello,
there is unfortunately no demo admin access available, but you can take a look at the documentation that includes most admin panel screenshots as well as in-depth information about the functionality of the theme.
Thank you
Hi, i’ve a presale question: how can i see the COMPLETE booking system on frontend? I would like to understand how it works: the the selection of the return date, the number of people, price-per-people and the full price calculation. Into the “DESTINATIONS” page, i can’t set the return date (there is only one-way trip)
When I try to select a transfer, i receive this message: No search results found: please try different search parameters in the search form above.
Can you give me a range of working dates/location to simulate a complete reservation?
Thank in advance!
Hello,
I have updated availability entries so you should be able to get search results for all possible searches.
There is detailed documentation also available online where you can find admin panel screenshots as well as more information about how the theme works.
Thank you!
Hi again,
I have two more questions:
1. Instead of “No search results found Please try different search paramters in the search form above.” can I insert another line? Or maybe a pop up button to a form where specific offers can be asked by the client? 2. I saw you had plans to add an option which enables clients to see only the drop off locations that actually display result? Is this now done?
Thanks a lot, Edit
Hello,
my apologies for a late reply.
1. You can change the text, however adding a pop up would need to be custom coded.
2. The feature is still on our to-do list.
Thank you
Hello again, thanks for your answer. Could you please let me know how to change this line : “No search results found Please try different search paramters in the search form above.” ? Thanks, Edit
Hi,
You can use a plugin like https://wordpress.org/plugins/say-what/ to change phrases to something else.
For text-domain use transfers, and leave the text-context field empty.
Thanks a lot for your prompt reply!
You are welcome.
Hello i have two more questions : 1. How can i set up the menus in the footer in css so it will align in 3 columns and looks good. on the mobile version it should be 1 column aligned in the middle. 2. how can i put the contact and the social icons in one column? https://goprimetransfer.com/ Thanks lot, Edit
Hello,
can you please open a ticket at our help-desk so that our support team can assist you with this?
Thank you
Hello, I was looking at your template. Like it a lot! However before buying i have two questions. i tried the back-end admin and the following came up: 1. I was wondering what happens in case we have a shared transfer (8 pax max, fixed standard price), however there are several pick up points on the way. So from pickup x the bus leaves at 4am, the transfer would stop at a 4.15am , b 4.30am , c 4.40am, d, e.. to arrive at y at 6.00am Is there an easy way to put this whole schedule in to the availabilty? Or do we need to put in availability 1by1 e.g. x 4am>y 6am; a 4.15am>y 6am ;b 4.30am>y 6.00am…
2.Is it possible on the main page to have multiple booking surfaces (date, time, destination) based on the transportation types/services e.g.? Or add a an additonal tab to this one booking surface, where there would be option to choose between the type and then the destinations would show only to those types? Hope my questions are clear, thanks a lot for help! Thanks, Edit
Hello Edit,
1. Transfers work from destinations A to B. There is no “multi-stop” feature available out of the box yet, however we have this on our to-do list.
2. Customization would be needed in order to be able to achieve such functionality.
Thank you for your interest and have a nice day!
Thank you!
You are welcome.
Hi. My theme licenced “bizimtransferci.com” , now i need to change with “bursatransfer.com” but first need to edit in localhost how can be make it? can you change the licence for bursatransfer.com and localhost?
Hello,
there is no restriction in the theme itself when it comes to domain changes. Whilst it is true you can use one license per domain, the domain does not get “locked” into a license, so you can freely move it from one place to another.
Thank you
Hi , i have buyed the theme one yer before and i try to install now the theme but i dont find the sampledata folder. My suport has expired ,please help me without buy new support because i never asked for support.
Thank you
Hello,
please navigate to your Downloads page on themeforest.
Next, click Download > All files & documentation next to the Transfers theme and save the package on your computer.
The download includes documentation, license, sample content and zipped file with the Transfers WordPress theme. Unpack the entire package after downloading.
Thank you
Hi, i have made the same but missing the sample content.
Thank you
Now it’s work
Thank you!
You are welcome!
Hi, we have 10 cars available each 7-8 has seats. So if we have an order for 12 people, this order can’t be booked. But we have 2 cars available to make the transfer. Is it possible to fix it?
Hi,
Please create a private ticket on https://themeenergy.ticksy.com, leave your WP and FTP login details and describe your issue in detail. Our support staff with assist you in the matter.
Thanks,
I did. Ticket #2042173. Its been more than 2 days no reply. Thanks.
Hello,
please note that requests of such nature take longer to be processed, however you can expect an answer shortly.
We apologize for the inconvenience and thank you for your patience.
Ok, thank you
Hello, I have a question for you,
Is it possible to block reservations for upcoming transfers that are booked less than for example 12 hours before the transfer? I can’t find this option so I let myself to ask here.
Best regards
Hi,
you can edit wp-content/plugins/transfers-plugin/js/search.js file in order to achieve the desired.
Change the:
$('.departure-date').datetimepicker({ minDate: 0,
to
var d1 = new Date ();
var d2 = new Date ( d1 );
d2.setHours ( d1.getHours() + 12 );
$('.departure-date').datetimepicker({ minDateTime: d2,
Thank you
Thank you for the hint. Unfortunately, code that i have looks a little different. At the moment I did not manage to change it properly.
// DATE & TIME PICKER $(’.departure-date’).datetimepicker({ minDate: serverDateTime, dateFormat: window.datepickerDateFormat, altFormat: window.datepickerAltFormat, altFieldTimeOnly: false, showMillisec: false, showMicrosec: false, showTimezone: false, numberOfMonths: 1, altField: ”#dep”, addSliderAccess: true, sliderAccessArgs: { touchonly: true }, onSelect: function(text, inst) { var currentDate = new Date(); var zeroedDate = new Date(inst.selectedYear, inst.selectedMonth, parseInt(inst.selectedDay), 0, 0, 0, 0); if (zeroedDate > currentDate) { $(’.departure-date’).datetimepicker(“setDate”, new Date(inst.selectedYear, inst.selectedMonth, parseInt(inst.selectedDay), 0, 0, 0, 0)); } } });
Hi,
Looks like you already customized this part. The variable serverDateTime points to that.
Hi, I am using Transfers theme with WPBakery Builder. How can i full width the white one? please see screenshot https://prnt.sc/nsokxp.The map is stretch or full width but the white isn’t coming along. Please help me thanks!
Hi,
I would advise that you remove the native styling here with the following css code:
.hentry {background:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
And set the white background on the row you have created with WPBakery.
Hi,
We have issues on pages with sidebars. You can see the pages with errors as following:
https://transferbul.net/paylasimli-transfer/ https://transferbul.net/ozel-transfer/ https://transferbul.net/servis-saatleri/ https://transferbul.net/en/shared-transfer/ https://transferbul.net/en/private-transfer/ https://transferbul.net/en/shuttle-hours/When I checked the error_log I’ve found following line:
PHP Parse error: syntax error, unexpected ‘global’ (T_GLOBAL) in /home/divfyq4yuwt6/public_html/yeni.transferbul.net/wp-content/themes/Transfers/sidebar-left.php on line 1
What is this error with sidebars and how can we fix them?
Godaddy stated that this is a theme related issue.
Hello,
this error means that your ftp client has jumbled php files. To prevent this in the future, you must always upload php files in Binary transfer mode (any code files, not just our theme).
To fix this, if for example using FileZilla, please go to Transfers > Transfer Mode > select Binary and then upload all theme files again.
Thank you
Thank your for your concern. Should I upload the theme folder from my home directory backup or from a fresh download?
Hi,
Please download the latest code from ThemeForest.
Thanks
did you finally fix the 24hr clock, so we may have an option to use 12 hour non militiary time clock
Hi,
No, that is still not a feature of the theme.
Thanks,
is that in the plans, people have been requesting it for a long time
you cant change the logo from Dashboard > Appearance > Customize > Site identity. any more since the update, i updated the files and the logo selection is not there
Thank you for noticing and letting us know. We will release a patch asap.
Our sincere apologies for the inconvenience.
A patch has just been released.
Thank you.
Hello, I just saw you have released an update for the theme. In the change log you wrote “return trip rounding removed”. What does this mean? Does it mean that my customers can’t book a round trip in the same order anymore??
Hi,
No, that is still possible. This was relating to some rounding of decimal places that was fixed. Sorry about the confusion.
Thank you.
You are welcome.
Hello there,
I’m trying to customize mail that the customer receives. I need to show the booking summary like you did on the checkout steps (booking summary on the right) Can you please tell me what are the meta keys of those fields? (from, to, date, etc…)
Best regards,
Gokcin ONUR
Hi,
Are you using WooCommerce for payment processing?
Thanks,
Hi again, Yes i’m using woocommerce for payment processing.
Best regards,
Gokcin ONUR
There are also some premium plugins that let you edit WooCommerce emails via admin,.
Thanks but i know how to customize woocommerce order emails. But i need meta keys of your booking summary. What i need is meta keys of “FROM”, “TO”, “VEHICLE”, “DATE” values. Instead of showing transfer data like;
TRANSFER FROM ANNECY TO BORDEAUX – MERIGNAC AIRPORT BY CAR (SHARED) ON 29/07/2018 AT 10:00 PEOPLE: 1 × 1
I need to show like below;
Pick-Up: Annecy Drop-Off: Bordeaux Merignac Airport Your Car: Car Date: 29/07/2018 Passenger: 1 .
What i’m trying to achieve is, instead of showing transfer details like a sentence, to show in a more professional way.
Best regards,
Gokcin ONUR
Hi,
In wp-content/plugins/transfers-plugin/includes/plugin_woocommerce.php you will find that we obtain this information with the following code:
global $transfers_plugin_post_types; $booking_id = wc_get_order_item_meta($item_id, TRANSFERS_WOOCOMMERCE_BOOKING_ID, true); $booking_object = $transfers_plugin_post_types->get_booking_entry($booking_id);
Then you can get the post info like the title with the following code:
$destination_from_id = $booking_object->from_id; $destination_to_id = $booking_object->to_id; $transport_type_id = $booking_object->transport_type_id; $destination_from_title = get_the_title($destination_from_id); $destination_to_title = get_the_title($destination_to_id); $transport_type_title = get_the_title($transport_type_id);
Hi,
I know that my support has expired. However, we’re facing a serious issue. For most of the time, the customers end up with empty cart when they reach cart page. We disabled all the caching, minification and CDN but the issue still exist. I’ve checked comments through themeforest. You advised before to update the theme to latest version and remove products in woocommerce. Our theme is v 1.20 which I believe the latest version. So, should we delete the products in woocommerce? Would this fix the issue? https://transferbul.net/en Thanks, AybarsHi,
Please check that your Transfers plugin is also version 1.20. If not, you must follow instructions in Transfers.zip/upgrade.txt to also upgrade the plugin itself.
Then, try deleting all Transfers products if multiples were created, empty the trash as well!
Hi, Transfer plugin – Version 1.21 Theme – Version: 1.20 And I see one “Transfers Product” for each Turkish and English langueages. How should I proceed?
Hi,
Are you using WPML to internationalize your website?
Thanks
Yes, we’re using WPML
Unfortunately there is nothing we can do without looking at your configuration. Please signup at our support center and submit a new ticket. Include all the details about the issue and your site URL.
For faster service, please privately include your WP and FTP login info when creating the ticket. Our support team will check it out and let you know.
Click Here To Create An Account & Get Support
Thanks
Unfortunately, I’m not able to create ticket as my support expired. Would you help me out if I send details via email to support@themeenergy.com?
Unfortunately our technical staff only do support via our ticksy support system.
Thank you,
Hello Admin, I am using them (Discussion on Transfers – Transport and Car Hire WordPress Theme), I want to change the domain name is it possible? Thank you,
Hi,
You mean you want to move your website to another domain and use the theme there? Sure, according to Envato t&c, as long as you use your licence on the one domain at a given time, it is ok, so yes, you can do that.
Thanks,
Can you please help we just bough couple days ago and setup everythıng the advance search ıs not workıng web site is www.ephesustransfer.com
Hi,
Please signup at our support center and submit a new ticket. Include all the details about the issue and your site URL.
For faster service, please privately include your WP and FTP login info when creating the ticket. Our support team will check it out and let you know.
Click Here To Create An Account & Get Support
Thanks
Hi,
I am currently using Transfers theme. Question, is it possible to select multiple destinations by ticking them? Because the demo is only showing selection of Destination A to Destination B. What about if this theme is used for tours? User can select all the destinations or more than 2 destinations.
I am hoping for your fast reply. Thank you!
Hello,
there is unfortunately no such feature available out of the box.
Thank you