10940 comments found.
Hi,
Is there any way to reduce the space between the Search Box and the “Explore our latest accommodations” in the Home Page? I added the following in my child theme but still the spacing is high -
*/.main-search {margin-top:20px !important;} .home .offers h1 { padding-top:0px; padding-bottom:0px; }
Pls help me with this.
Thanks.
Hi,
would you mind sharing your url so that we can take a look?
Thank you.
Sorry. I was busy traveling. www.unusualescapes.com
There are a number of things causing that whitespace.
1. You have added some chat plugin to the below slider sidebar (Zopim live chat script).
If you need it there, you can reduce the height and margin/padding of this sidebar by adding the following to your child theme style.css
.home-below-slider {
margin:0;
}
2. You can set .main-search { margin-bottom:0 } in your child theme style.css to reduce margin below the search widget.
3. You can set .main-search { height:170px; } in your child theme style.css to reduce height from 202px
Hi,
First, thanks for the great theme. I have two questions about theme.
1) Is it possible to add multiple locations for any particular tour. I need this for the search function. Some vacation packages include more than one destination.
2.) In need to have the option to add more that one rich text editor areas in the tour creation page. Now you can use extra fields, however no extra HTML ( e.g tables) could be included. Can you help me this?
Thank alot in advance
Kind Regards,
Svet
Hi,
Thanks for the kind words.
1. Multiple locations are a feature we plan to add soon.
2. At the moment something like this you will have to code yourself.
Thanks
Hello,
I plan to buy your theme but before I do it I have a few questions.
I see that users are now able to list their own properties using the front-end featured you implemented recently. 1) Are they able to manage their property properly from their account panel or only the admin can do it? 2) Can the users receive payment directly through Woocommerce or only the admin can? 3) Are there any kind of packages available for the users?
Thank you, Stefan
Hi Stefan,
Users can manage their own property from the front end.
Payments go only to admin. In fact, even if you plan to implement your own solution for payments to be paid to each user, according to Envato’s policy you have to purchase the extended licence.
Thanks
Hello,
I purchased the “Book Your Travel – Online Booking WordPress Theme” from Themeforest this past Thursday and have been running into some issues. I’ve looked through the Themeforest comments as well as the Knowledgebase on the Theme Energy website though unfortunately have not found an answer.
I’m using the Wordpress Premium Hosting Package through Media Temple to host the website, I’ve uploaded the theme along with all of the sample data. I’ve also hosted the website locally on my computer and have had the same issue.
Starting with Photo1, I’ve booked a week (Nov 3 – Nov 7) for House Adrienne, at this point everything works as expected and the pricing table breaks down the price for each night.
Looking at Photo2, I’ve changed the number of adults to 4 and again everything works as expected, which is not always the case (please see next photo).
Looking at Photo3, I’ve change the number of children and the pricing table messes up and only shows one day.
Looking at Photo4, Once submitted the user is able to book the room for that 1 night price.
Looking at Photo5, comes into the Booking management screen in Wordpress Admin as the full 4 night stay.
Has your team run into this issue before?
Hi,
May I ask what is your theme version you are running?
Thank you
Hello, The version that I’m running is 5.01
Interesting. Can you please send your WP/FTP login details to support@themeenergy.com and we will have a look at and resolve the issue.
Thank you
When is the next update?
We will submit it in 1 hour for approval.
Thanks
Hi,
I am trying to upload sample data xml but i failed. What would be the reason?
After assigning user i got the following error message.
Failed to import product_type external Failed to import product_type grouped Failed to import product_type simple Failed to import product_type variable Failed to import product_cat Accommodations Failed to import product_cat Car rentals Failed to import product_cat Cruises Failed to import product_cat Tours ... continues
How can i fix that?
Thanks.
And also if i check Download and import file attachments option i got no data recieved error. Could you please send me proper xml? I think there is a problem about xml file.
The sample file will be upgraded to fix the error in your first post in 1 hour.
With regards your images issue, please set WP_DEBUG to true in your wp-config.php and reattempt the import and see if you get php errors – i suspect your upload limits are causing the issue
I have changed WP_DEBUG to true but i got the following error.
Strict Standards: Declaration of WP_Import::bump_request_timeout() should be compatible with WP_Importer::bump_request_timeout($val) in /home/tarifebilir/public_html/wp-content/plugins/wordpress-importer/wordpress-importer.php on line 38
Warning: Cannot modify header information – headers already sent by (output started at /home/tarifebilir/public_html/wp-content/plugins/wordpress-importer/wordpress-importer.php:38) in /home/tarifebilir/public_html/wp-includes/option.php on line 750
Warning: Cannot modify header information – headers already sent by (output started at /home/tarifebilir/public_html/wp-content/plugins/wordpress-importer/wordpress-importer.php:38) in /home/tarifebilir/public_html/wp-includes/option.php on line 751
I tried to upload xml again. I still have the same no data received error.
How can i fix that situation?
Can i upload via cpanel instead of wordpress admin page? In which directory this xml will be uploaded?
can you give me support email? I can not share image here.
Hi! I’m using the latest version of Book Your Travel, but cannot change the 5 adult & 5 children booking form. Could you please guide me on how to change it?
Thanks in advance.
At the moment that is hardcoded in accommodations.js … look for “max_count = 5;”
Hi, I’ve changed the max_count = 5 to max_count = 50, both in tours.js and in accommodations.js, but I still can’t choose more than 5 in the form of a tour. Please advise on how to proceed.
Thanks in advance!
In tours.js this is defined on line 504
var max_count = 5;
var max_child_count = 5;
Are you using a child theme perhaps?
function bindTourControls(tour_id) {
if (jq('#booking_form_adults option').size() == 0) {
var max_count = 50;
var max_child_count = 50;
for ( var i = 1; i <= max_count; i++ ) {
jq('<option ' + (i == 1 ? 'selected' : '') + '>').val(i).text(i).appendTo('#booking_form_adults');
}
jq("#booking_form_adults").uniform();
jq('#booking_form_adults').on('change', function (e) {
var optionSelected = jq("option:selected", this);
var valueSelected = this.value;
bindTourRatesTable();
});
if (max_child_count > 0) {
jq('<option selected>').val(0).text(0).appendTo('#booking_form_children');
for ( var i = 1; i <= max_child_count; i++ ) {
jq('<option>').val(i).text(i).appendTo('#booking_form_children');
}
jq("#booking_form_children").uniform();
jq('#booking_form_children').on('change', function (e) {
var optionSelected = jq("option:selected", this);
var valueSelected = this.value;
bindTourRatesTable();
});
} else {
jq('.booking_form_children').hide();
}
}
Should I change something else perhaps?
Thanks in advance for your help!
Can you provide a url where I can test this?
Thanks
Hi! Just finished uploading the latest version, including the changes, for the third time, and it’s fixed. Apparently there must’ve been a cache issue of something similar.
Thanks for the help!
Excellent, thanks for posting back.
Hi,
I need advise on how to setup the custom search form customized for each page, Besides the one in the home page: the same search form in the Accommodations Page restricted to search for accommodations, and also for Tours and Car Rentals in the same manner.
It would be a nice configurable feature to be able to specify in admin: “Include Custom Search in Post-Type pages: {Accommodations, Tours, Car Rentals}”
Any advise will be greatly appreciated.
Thanks,
Adalberto
Search upgrade is about to be released in 1 hour.
Thanks
Thanks
Hi themeenergy i update BYT theme days ago and i have a question ?
1. i selected top car rental offers and add car rental (Show”top car rental offers” section on home page) , but it can’t show on home page. 2. i would like edit show latest offers (top car rental offers, latest tours etc.) from automatic show to select show on home page.
thanks.
I am not sure I understand your questions. Can you please provide screenshots of what you have done?
Thanks
Can i design section. For exemple (http://postimg.org/image/vze1q5ab3) section1(Tachai), section2(Phi Phi), section3(Similan), section4(Maiton) change to section1(Similan), section2(Maiton), section3(Tachai), section4(Phi Phi).
Thanks
Hi,
I apologize, but I still do not quite understand what would you like to achieve. Do you want to change the order of the elements within a certain section or change the order of home page sections or something else?
Thank you.
I want to set the element in section by myself because your system automatic setted the element in section.
Thank you.
Have a look at byt_home.php
Thanks
In Part of picture before , system posted tour by last update but I want to choose tour and post by myself in picture of after. I don’t post dependent with last update.
Thank you.
I am not sure I understand what you mean. Can you please clarify.
Hello, I am considering to buy your theme, but I noticed something in the cruises section. That all the classifications are the same, When I click on Senior Cruises, or adventure cruises, all cruises are showing. Does this mean there is no showing of only a specific cruise type? Awaiting your answer
Hi,
The pages were not configured correctly in cms. I have configured them now. Thank you for pointing this out:
http://www.themeenergy.com/themes/wordpress/book-your-travel/cruises/luxury-cruises/ http://www.themeenergy.com/themes/wordpress/book-your-travel/cruises/seniors-cruises/ http://www.themeenergy.com/themes/wordpress/book-your-travel/cruises/family-cruises/ http://www.themeenergy.com/themes/wordpress/book-your-travel/cruises/adventure-cruises/Thanks
Hi, can u please tell me what do I need to edit so that I can add shortcodes in the availability tab from tours and accommodations? Thanks
Hi,
Why not use the dynamic fields creation feature in Theme options to add fields dynamically to these tabs?
Thanks
I want to add a form which is in shortcode. Can I add shortcodes on new fields? Thanks
Aha, at the moment the theme does not support that so you will have to edit the php code in your child theme – single-accommodation.php and single-tour.php are the files you need.
Ok thanks I’ll take a look. Can you please let me know about this http://themeforest.net/item/book-your-travel-online-booking-wordpress-theme/5632266/comments?filter=all&page=161#comment_8154977 ? Thanks
I’ve replied to that comment.
Thanks
I’ve resolved the shortcode thing. Thanks again. If I wanted to put some ribbons on some of the accommodations or tours , like 50% off etc, using a corner ribbon on the thumbnail like so : http://dragonartz.files.wordpress.com/2009/09/vector-corner-ribbons-prev-by-dragonart.jpg?w=495&h=495 how can I do that ? The simplest version possible please. ps I’ve missed you 
How did you resolve the shortcode thing?
And thanks – this upgrade took a lot out of us.
I’ve added this <?php echo do_shortcode(‘[.......]’); ?> in the tab content on accommodation and tours in child theme.
Ok great, thanks.
As for ribbons, why just not add custom css to your child theme and custom html to the includes/parts/accommodation-item.php that you can find all over the place?
Thats exactly what I’ll do , but I want to have a option in the backend so when checked it shows the ribbon. How can I do that?
I was thinking of adding a new tab and when in that tab is inserted text , like 50% off, deal of the day etc…., this short text to appear on the ribbon. I’ll google some css for corner ribbon and start from there. If you have a better ideea please let me know. thanks.
I just saw that the script was not showed in the comment above so here it is the html I’ve put in accommodation.item http://i.imgur.com/G2imyCc.png . How can I make it appear only on selected accommodations and tours?
Interesting. I think the best idea is for us to actually add a new dynamic field type called Checkbox… which actually allows you to add a new checkbox field to your single accommodation. You can then call dynamic field “Has ribbon” or something – and on frontend based on this field you can show or hide ribbon.
We will add checkbox type to dynamic fields in next upgrade.
Great to hear that ul add this new feature in the future. Untill then what can I do to add it from code for offers I choose? I mean I have the css and html working but I need it to show only for a few offers. What code should I add ?
in includes/theme_metaboxes.php look for prefix accommodation_ and then under the meta fields there add a new field like so:
array(
'label' => __('Has ribbon?', 'bookyourtravel'), // <label>
'desc' => __('Has a ribbon', 'bookyourtravel'), // description
'id' => $prefix.'has_ribbon', // field id and name
'type' => 'checkbox', // type of field
),
Then, in includes/parts/accommodation-item.php on or around line 22 add something this:
$has_ribbon = $accommodation_obj->get_custom_field('has_ribbon', false);
Now, anywhere below that you can do something like this:
if ($has_ribbon) {
echo '<div class="ribbon" />';
}
Try that.
I’ve added the first code in theme_meta_boxes.php and the checkbox appeared like so. Then I’ve added the second code like so http://i.imgur.com/dtVHNqo.png . So far so good. But where should I add the third code? Thanks
The third code goes whereever you want to display your ribbon… before you gave us an example of your ribbon code… so i guess you would wrap that example of your ribbon code with
<?php if ($has_ribbon) { ?>
YOUR RIBBON CODE
<?php } ?>
My html code is this http://i.imgur.com/G2imyCc.png and my css code is this http://i.imgur.com/bBU10lW.png . When I put the above code with my html in accommodation-item.php like so http://i.imgur.com/LS6xS3L.png , nothing happens . No ribbon appears on the selected accommodation. I KNOW I am doing something off. AGAIN.
Thanks.
And where did you place this code:
$has_ribbon = $accommodation_obj->get_custom_field(‘has_ribbon’, false);
On line 22 in includes/parts/accommodation-item.php like so http://i.imgur.com/dtVHNqo.png
Did you go to edit the accommodation and make sure that the checkbox is checked for this particular accommodation?
yes. I’ve checked three of them like so http://i.imgur.com/qsL4mcC.png . I’ve sent you my login credentials on email if you can take a look to see how it looks. Thanks.
Fixed this. It was my bad. I told you to insert the following code:
$has_ribbon = $accommodation_obj->get_custom_field('has_ribbon', false);
However, it should have been:
$has_ribbon = $accommodation_obj->get_custom_field('has_ribbon', true);
It’s fixed on your server and works.
Perfect. Exactly what I needed. Thank you very much. Did I say thank you? Well thank you.
You are welcome.
Hi This is great theme. I have a few questions. 1. Do I have the right to upgrade the next versions without additional payment after buying? 2. I will configure the multiple currencies in the woocommerce multilingual section of WPML, and I will add the currency switcher to the front-end of my site. If I change currency selection in dropdown, all prices on the site should be converted to the selected currency?
Does your theme support multi-currency for wpml woocommerce multilingual(in other words; support multi currency processing)?
Thanks
Hi,
All future upgrades are free once you purchase the theme.
At the moment our theme does not support the WPML multi-currency feature however it is on our todo list and we hope to implement this feature soon.
Thanks
Hi I’m trying to add another custom entity similar to ‘Tours’ in your theme would you guys be able to guide me on how to achieve that? Thanks.
Hi,
That is custom code. Not sure what we can do to help you other than providing suggestions. We don’t do custom code implementation.
Thanks
Hi,
Is it possible to group room types for each accommodation?
For example a hotel in Spain has 4 room types (would like to have custom images for each)
Hotel in Italy has 2 room types (same name, Deluxe, Single ETC) custom images again?
Hope the above makes sense.
Many thanks for your help
You already can do this by creating a new Room type for each of the rooms for each accommodation you create.
Or am I misunderstanding?
what responsive framework is this?
It is custom built.
Hello, I am installing and modifying your theme for a client that buyed and I have to say that I was little shocked when I try your demo and the search did not work and have different lacks: 1. Try to put the word USA (is a tour location) and did not work. Text only work in title and description and I thinks is the correct way but the bug is say in text “city, region, district,...” inside text input when is better put some thing as “related to …” 2. When put multilingual with wpml the search work no more (at least in tours that is what I force to select) fix it or take out that is wpml compatible (wpml ready = 1 language and wpml compatible or wpml multilingual = 2 or more languages). 3. I your have tour select and return the options change to hotel but tours is check. This is because you only change search options when have the javascript event on change, you have also to put the function onload
There are more bugs/lacks (at least for multilingual) but I will say it after you fix this three if you are interested.
We in Barna Online http://barnaonline.com have made a lot of improvements in tuors reservation. We made what you can select every day of week with a check defined not as type of tour is defined in tour itself. This make a total liberty in tour reservations (one tour can be Monday and Tuesday and another in Saturday, Friday and Wednesday, ... without problem). And also we made a end date for tours reservations (yours by default don’t have date limit). This change make possible to make that a tour have different prices for different dates (its very normal have more expensive prices in holidays). And also make it works with Woocommerce multilingual (it did not work in other language that default) If you want buy the code we can arrange a price.
Thanks for posting. We are constantly improving the theme and hope to have any issues our users come up with ironed out soon.
We are recieving Error message when installing WooCommerce + Woocommerce Bookings extension..
IS there a fix for this?? Fatal error: Cannot redeclare is_woocommerce_active() (previously declared in /home/bonaire2014/public_html/wp-content/plugins/woocommerce-bookings/woo-includes/woo-functions.php:13) in /home/bonaire2014/public_html/wp-content/themes/BookYourTravel/includes/theme_woocommerce.php on line 20 The Plugins: WooCommerce Bookings WooCommerce – e-Path Payment Gateway
Also: have 3 WooCommerce override templates that are out of date in the theme(from WooCommerce system status w plugins off): Template Overrides (WooCommerce):BookYourTravel/woocommerce/cart/cart-empty.php BookYourTravel/woocommerce/cart/cart-item-data.php BookYourTravel/woocommerce/cart/cart-shipping.php BookYourTravel/woocommerce/cart/cart.php BookYourTravel/woocommerce/checkout/form-billing.php BookYourTravel/woocommerce/checkout/form-checkout.php BookYourTravel/woocommerce/checkout/form-shipping.php version 2.1.2 is out of date. The core version is 2.2.0 BookYourTravel/woocommerce/checkout/review-order.php BookYourTravel/woocommerce/checkout/thankyou.php version 2.0.0 is out of date. The core version is 2.2.0 BookYourTravel/woocommerce/order/order-details.php version 2.1.0 is out of date. The core version is 2.2.0
the plugins install perfectly with other themes..
Thank for assistance..
We only provide technical assistance to users with a PURCHASED badge next to their name. Please verify your purchase with a PURCHASED badge and we will be more than happy to assist you.
With regards the woocommerce-bookings plugin, we have not run our theme with this plugin and cannot vouch for compatibility with it.
Thanks
Hi, can we set a percentage of commission, so custumer pay only the commission on the website as a deposit and the rest at his arrival. and way parteners cant add rental cars and tours?
No, such a feature is not available.
Thanks
Hi there
Is there a way to customise the booking form? I do not need the address field.
Please assist me with this
Kind regards, Edmund
Hi,
At the moment such a feature is not available though we do have it in our todo list for the future.
Thanks
Hi, On search result page how to remove completely “Refine search results” box that is on left side of page , because i dont need it ? Thanks,J
With this upcoming upgrade (due release in 1 hour) you can remove the search box from there as it’s a widget.
Thanks