1304 comments found.
hello, can we increase the price in bulk?
Is it possible to share wp admin as a demo?
Hello,
- There is no bulk editing feature
- There is no admin demo. You can see screenshots in the theme documentation however: https://themeenergy.com/themes/documentation/wordpress/transfers/Hello,
I’ve been using the theme for a while now. Recently, I had to change the currency, but for some reason, even after going to the theme settings and attempting to switch the currency from dollar to euro, it’s still appearing as dollar.
Here’s the link: https://holidaysrusltd.com/
I would be grateful if you could help me out.
Hello,
have you tried to clear your browser cache and cookies? Temporarily uninstalling third-party plugins could also help.
Thank you
hi i have purchased your theme and there is no elementor or any plugin to edit the pages. Going into Pages > Edit (home) there is nothing.Is this site widget based and everything has to be done in the widget area?
Hello,
you can install Elementor via Plugins > Add new and then design your pages using the page builder.
If you will have any further questions please open a ticket at the customer help-desk at https://themeenergy.ticksy.com/
Thank you
Your template is weird that its a widget based template, any changes made have to be done in the widgets itself and when i tried using Elementor the error i got was “you must call “the_content” function in the current template”, besides even when using elementor default page there is a space/gap in the header area meaning the layout cannot even work
Hello,
the default home page is indeed widgetized, however that does not prevent you from designing your pages using Elementor.
To do so go to Pages > Add new and set the page template to “Elementor Full Width” or “100 wide” as these are the most suitable page templates to use with page builders.
Hi,
I have purchased the theme around 7 months ago,
Now, I can’t make any edit as elementor is having issues with the theme.
Grateful if you can help.
Hello,
you can design your own posts and pages using Elementor. To do so, go to Pages / Posts > Add new and then open the page with the page builder.
Make sure to temporarily disable the preloader at Appearance > Theme Options > Configuration settings – a fix for that is coming shortly.
Thank you
Hi i would like to ask about departure times, for example for 12:00 o clock flight does this system arrange 08:00 o clock pick up time by itself or according to time availability times thanks in advance
Hello,
customers must set the desired departure time by themselves.
Thank you for your interest!
I cannot put the season start or season end date in transfers availability
Hello,
please make sure to temporarily deactivate all plugins, except the Transfers plugin. Then clear your browser cache and cookies, and reload your website.
Let us know if the issue persists after you would do so.
Thank you
Can the location be customized? I mean IF user select “A” location THEN only “B” location show..can it do that?
Secondly, for passenger. I would like to add different fare for Children and Infant. At the moment I see that Children is considered as Adult too.
Hello,
customization would be required in order to have these features available.
Thank you for your interest!
Hi, is there a way to bulk upload Transfers availability via excel or someother means? If yes, please advise how
Hello,
there is unfortunately no such feature available.
Thank you
Hello, do you haave a demo site to see the admin before I buy?
Hello,
unfortunately not. But there is a thorough theme guide available that you can check out here.
Thank you
Please help, in some service I just want to show only share or private in search result, how can I do? in old version it shows result only when I put price but new version it always shows both share and private.
Hi,
You can copy page-advanced-search.php to your child theme, edit the file there and change
if ($transfers_plugin_globals->enable_shared_transfers() && $availability_result->available_seats >= $people) {
to
if ($transfers_plugin_globals->enable_shared_transfers() && $availability_result->available_seats >= $people && $availability_result->price_share > 0) {
Hi, I have tried everything possible to try to change the colour of the text of the ‘Transfers: Hero Unit Widget.’ The text of the ‘Hero Unit Title and Hero Unit Sub Title.’ It is currently white but really want to change this text to another colour! Can anyone please assist, I just have this 1 thing I need, that is it. Will be much much appreciated.. :/
Hello,
you can add the following to Appearance > Customize > Additional CSS field:
.intro .textwidget {
color: red;
}
Alternatively, you can use the Slider Revolution plugin that is bundled with the theme instead. A sample slider that matches the look of the hero scene is also provided.
Thank you very much! That was very kind of you. That CSS code worked like a charm. Again, much appreciated.. :))
You are welcome 
Hello,
You didn’t implemented the night supplement charges as you said 6 years ago when i bought the theme.
When it will be done? I find it very unprofessional!
Regards.
Hello,
kindly understand that releasing new features is done at the discretion of our development team. Please also note that whilst a feature suggestion might be added to the to-do list, that does not guarantee its implementation, especially if the said feature is not in high demand by other customers. In such cases customization is the best route to take.
Regards,
Hello,
You said you’re planning to implement it in the future, that’s very disappointing been waiting since 6 years.
And i have seen more comments regarding the same feature.
I might find an another theme and for surely i won’t recommend your’s.
Regards.
Hello,
I am sorry you are disappointed. I wish you much success in your endeavors.
Regards.
Is there any option to track shuttle? We want to offer users a feature to track live position of the shuttle? Also, Is it possible to convert this theme into PWA?
Hello,
No, neither of those things are a feature of the theme.
Thanks,
Could you recommend a partial payment/deposit plugin for this theme? I see there are your responses from 6 years ago mentioning your plans to incorporate this feature, has anything changed?
Hello,
Unfortunately there is no plugin that can get you partial payment functionality that we know of.
On search, how can I change on Time Picker the time default 00:00 to 12:00 when change days ??
Hello,
In wp-content/plugins/transfers-plugin/js/search.js you would try to change line 69 from
$('.departure-date').datetimepicker({
minDate: serverDateTime,
to
$('.departure-date').datetimepicker({
minDate: serverDateTime,
defaultValue: '12:00',
This is based on https://trentrichardson.com/examples/timepicker/ options however, please note, this is a customization that you have to try yourself.
Hi, like your live demo, it doesn’t work. thanks
Hello,
Our live demo does not have this implementation.
Do you see a javascript error in your browser console after implementing the above?
// DATE & TIME PICKER
$('.departure-date').datetimepicker({
minDate: serverDateTime,
defaultValue: '12:00',
dateFormat: window.datepickerDateFormat,
altFormat: window.datepickerAltFormat,
altFieldTimeOnly: false,
showMillisec: false,
showMicrosec: false,
showTimezone: false,
numberOfMonths: 1,
altField: "#dep",
controlType: 'select',
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));
$('.return-date').datetimepicker("setDate", new Date(inst.selectedYear, inst.selectedMonth, parseInt(inst.selectedDay), 0, 0, 0, 0));
} else {
$('.return-date').datetimepicker("setDate", currentDate);
}
}
});
if (typeof(window.datepickerDepartureDateValue) != 'undefined' && window.datepickerDepartureDateValue.length > 0) {
$('.departure-date').datetimepicker("setDate", new Date(window.datepickerDepartureDateValue.replace(/-/g, '/')));
}
// } else {
// $('.departure-date').datetimepicker("setDate", new Date());
// }
Hello,
Instead of the change above please try changing
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));
$('.return-date').datetimepicker("setDate", new Date(inst.selectedYear, inst.selectedMonth, parseInt(inst.selectedDay), 0, 0, 0, 0));
} else {
$('.return-date').datetimepicker("setDate", currentDate);
}
}
to
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), 12, 0, 0, 0));
$('.return-date').datetimepicker("setDate", new Date(inst.selectedYear, inst.selectedMonth, parseInt(inst.selectedDay), 12, 0, 0, 0));
} else {
$('.return-date').datetimepicker("setDate", currentDate);
}
}
Hello
where is the changelog? How do I know what updates you have made? I’d like to know what you updated to evaluate the purchase.
What improvements or corrections did you make?
Hello,
changelog is located inside the theme folder. Last update includes the following:
- Rev Slider version 6.6.10 - fixed php bugs - allow 0 prices for transfers
Thank you
Hi, is it possible to change the destination type from dropdown to a Free Text Field
Hello,
No, the theme requires the search fields for destinations to be prepopulated dropdowns.
Thanks,
Hello
where is the changelog? How do I know what updates you have made?
For example the plugin is great, but it lacks night service. If you add this, I’d buy it for sure
Hello,
Changelog is included in the Transfers.zip file downloaded from ThemeForest.
What night service are you referring to?
Hello
I didn’t purchase your theme, but I’d like to know what you updated to evaluate the purchase. What improvements or corrections did you make?
The plugin is good, but lacks the ability to enter an extra cost, for night service
How to test the reservation system? Do you have demo access?
Hello,
you can create a booking on our demo website to see how it works. There is unfortunately no admin access available, but you can take a look at the theme documentation that includes plenty of screenshots as well as in-depth information about how the theme works.
Do not hesitate to ask if you will have any further questions.
Thank you
Hello,
This theme is not working with Wordpress 6.1.1.
Regards.
Hello,
Can you please provide more detail with regards to issues you are experiencing? We are running the theme on WordPress 6.1.1 without issue.
Hello,
This error shows while activating the theme on fresh installation:
Warning: Undefined property: OF_Import_Export::$options_key in /wp-content/themes/Transfers/includes/framework/includes/class-options-importer.php on line 92
Even can’t install the required plugins.
Regards.
Hi,
Can you please try deactivating and reactivating the theme?
Hello,
First i made a fresh installation and it gave problems, now i tried deactivating and reactivating and still the same.
Regards.
Hello, can you see Theme options in Appearance – Theme options? If so, please press the Save/ Update button.