66 comments found.
Hi, all photos and icons disappeard from the website, this happened before and you resolved it, pls assist
my support expired
Can you please extend the support.
Hello, triying to configure the email and nothing is working , I already changed the email to send to and nothing is it something missing at the index html for , I do not see any method or action. im getting server error but I know is not the server cause I have another 3 sites in the same hosting and everything works perfectly
Hi,
The email part is written in PHP, so the your web server should support it. Also check the SMTP configuration in your server. If you still find any issues further please create a ticket at our support forum : http://support.0effortthemes.com/
Thanks
Hello, i don’t know what’s going with the emailing. Admin doesn’t receive any email from order or booking. I have check and i don’t seem to figure out what the problem is.
Hi,
Can you please check your server SMTP configuration which actually responsible on mailing part.
Thanks and Regards
Hi, I’ve purchased this template but when i downloaded zip file it turned out that there’s no any html files. Can u fix this problem?
Hi,
We are seriously looking into the matter, will notify you soon. Keep watching in themeforest for updates.
Thanks and Regards
Hi,
We found some ambiguity on linking the uploaded files. We have already added latest files to update queue. You can also send mail to 0effortthemes@itobuz.com to get the files directly. Please mention the Subject Spice HTML Files.
Thanks and Regards
Hi,
Files are now updated in themeforest. Please download the updated files.
Thanks
Hi,
Now everything is fine. Thank you!
Best regards
Great…expecting a 5 star rating from you.
Hello 0effortthemes, We Are At Your City search function doesn’t work or what? it’s not working on mine
Hi,
Thanks for purchasing the template.
Its an HTML template and the city search is not integrated to the Google Maps API for searching.
Regards
Oh really? So it’s just a fashion add up for the template huh? 
How do I include Paypal for item order?
You can check the demo for the functionalities. If you want to include Paypal, it would be best to purchase the Wordpress version. No Html template will provide that. Or you can have the express paypal checkout buttons.
Please Author, how does the BOOK YOUR TABLE NOW works? Because when you click on BOOK, it just keep loading and that’s it.
Hi,
Clicking on the ‘BOOK NOW’ button after filling in the form, sends an email including the booking details to the Admin.
This functionality is working fine on our live demo link. If you are facing any issues or need any help, please create a ticket at ‘http://www.0effortthemes.com/support/' and we will look into the issue you are facing.
Also, please share your website link in that ticket, for testing purposes.
Thanks and regards
Thanks. I did figure it out. It’s working now. There is a problem though, some section of the homepage doesn’t display on mobile, like : the review section, Newsletter section, CONTACT US WE ARE HERE TO LISTEN TO YOU section, and others below that too. Can you look at it for me?
Sorry for the delay in responding.
Those sections are hidden to give a better user experience on mobile. If you still need that to show on the mobile, check style.css line no : 7501
In the map section, I am trying to remove the search-form and just add my 2 restaurant address side by side with a vertical line separating them, can you help how to do this
Hi,
Do you want to add your 2 restaurant addresses in the red portion of the form and keep the left grey section? I will be able to help you a bit better if you could provide me with some more details as to where you would like to add the addresses and in which portion of the form.
Thanks and regards
Hi thanks for your reply, I will like to make it something like the following, http://www.aljawadlb.com/pic1.png
Hi,
Please find the following lines of code in your HTML file :
<div class="“search-form”">
<form id="map-search-form">
<div>
<input type="text" id="mapCity" name="mapCity" placeholder="Enter your city name">
</div>
<div>
<input type="text" id="mapPin" name="mapPin" placeholder="Enter your pincode">
</div>
<button class="button">FIND NOW</button>
</form>
</div>
Replace the above code with the code given below:
<div class="“search-form" clear="" fix="">
<div class="“address-wrap”">
YOUR ADDRESS 1 HERE
</div>
<div class="“address-wrap”">
YOUR ADDRESS 2 HERE
</div>
</div>
Next, in your ‘styles.css’ file, add the following styles at the very last line of the file:
@media screen and (min-width: 992px) {
.search-form .address-wrap {
float: left;
width: 50%;
}
.search-form .address-wrap:first-of-type {
border-right: 1px solid #c34136;
}
}
Also find the following lines of code in ‘style.css’ file (should be near line no. 8390):
.search-form {
padding: 60px 10px;
}
Reduce the value ‘60px’ till the top and bottom spacing and alignment seems acceptable.
Thanks and regards
Hi, I have done exactly as you said but the output is not correct , please see screen shot http://www.aljawadlb.com/pic2.png
Hi,
We will need the link of your website to inspect and have a closer detailed look and help you better.
please have a look at http://aljawadlb.com/jawad/, i have uploaded a test version, on the other hand we have tried all ways to get the google map working on 2 locations (markers) but nothing is happing.
Hi,
We had a look at the link you provided and have found the problem regarding the ADDRESS 1 and 2 problem. To fix that issue, please find the previous code that I had asked you to paste in your HTML file:
<div class="“search-form" clear="" fix="">
<div class="“address-wrap”">
YOUR ADDRESS 1 HERE
</div>
<div class="“address-wrap”">
YOUR ADDRESS 2 HERE
</div>
</div>
Replace the above code with the following:
<div class="search-form clearfix">
<div class="address-wrap">
YOUR ADDRESS 1 HERE
</div>
<div class="address-wrap">
YOUR ADDRESS 2 HERE
</div>
</div>
This should make the addresses appear side-by-side with the red background.
Next, you can change the following code in ‘style.css’ file to set the spacing and alignment:
.search-form {
padding: 60px 10px;
}
We are also looking into the map section currently and will reply back to you in this thread soon.
Thanks and regards
Thanks this worked great – 5+ star support
Hi , any update regarding the map issue and how to add additional location mark.
Hi,
Thank you for your patience.
Please find the following lines of code in ‘myCustom.js’ in ‘_assets/js/’ directory of your project:
var beachMarker = new google.maps.Marker({
position: myLatLng,
map: map,
icon: image
});
var image = '_assets/images/map-marker.png';
var myLatlng2 = new google.maps.LatLng(33.266376, 35.204130);
var beachMarker = new google.maps.Marker({
position: myLatLng2,
map: map,
icon: image
});
Replace the above code with the code below:
var locations = [
[33.851178, 35.509651],
[33.266376, 35.204130],
];
var marker, i;
for (i = 0; i < locations.length; i++) {
console.log(locations[i]);
marker = new google.maps.Marker({
position: new google.maps.LatLng(locations[i][0], locations[i][1]),
map: map,
icon: image
});
}
This should show 2 markers in the same map. Let us know if it worked.
Thanks and regards
Hi, Thanks, this made it work just perfect , thanks for your great support
Welcome 
one more question,
how can we change the theme color, e.g red to green
Hi,
We don’t have theme color changer integrated into this theme, so unfortunately you will have to change the colors manually.
What you can do is find the color code ‘#db4f44’ in all the css files and replace them with the hash value of the green color that you want.
For example, after searching you may find codes like:
{
background-color: #db4f44;
}
The color code after the # will need to be changed to the shade of green that you choose.
Thanks , noted
HI, how can I make the (OUR DELICIOUS FOOD AT YOUR DOORSTEP) section higher in size as I need to add 2 phone numbers and the second is not fitting in the red box
2nd how can I add 2 restaurant locations in the map
3rd how can we add additional food menu to the main home page
Hi,
To add 2 phone numbers in the red box ‘Our Delicious Food’, please find the following code in your ‘index.html’ file (should be near line no. 165):
<div class="call">
<h6>Call us at our 24hr number</h6>
<h3><i class="fa fa-phone" /> + 1800 987654321</h3>
</div>
Next, just simply add the second number below the first one, like so:
<div class="call">
<h6>Call us at our 24hr number</h6>
<h3><i class="fa fa-phone" /> + 1800 987654321</h3>
<h3><i class="fa fa-phone" /> ADD NEW NUMBER HERE</h3>
</div>
After that, open ‘style.css’ file and find the following lines of code (should be near line no. 8565):
.place-order .call {
padding: 50px 0;
}
Replace the above code with the following:
.place-order .call {
padding: 20px 0;
}
You can also play around with the padding values until you get the desired spacing and alignment.
Hi,
To add 2 phone numbers in the red box ‘Our Delicious Food’, please find the following code in your ‘index.html’ file (should be near line no. 165):
<div class="call">
<h6>Call us at our 24hr number</h6>
<h3><i class="fa fa-phone" /> + 1800 987654321</h3>
</div>
Next, just simply add the second number below the first one, like so:
<div class="call">
<h6>Call us at our 24hr number</h6>
<h3><i class="fa fa-phone" /> + 1800 987654321</h3>
<h3><i class="fa fa-phone" /> ADD NEW NUMBER HERE</h3>
</div>
After that, open ‘style.css’ file and find the following lines of code (should be near line no. 8565):
.place-order .call {
padding: 50px 0;
}
Replace the above code with the following:
.place-order .call {
padding: 20px 0;
}
You can also play around with the padding values until you get the desired spacing and alignment.
To add more than one markers on the map, please follow the links given below. They have provided clear instructions and steps to do so:
https://developers.google.com/maps/documentation/javascript/markersAnother link you can use for reference is: https://gist.github.com/parth1020/4481893
The JS code changes are to be done in ‘myCustom.js’ file in the ‘assets/js’ folder of your project directory. The present Google Map code is right at the beginning of that file.
3rd how can we add additional food menu to the main home page , I have copied a group and added it to the HTML file in index as you made but its not showing, it just keep showing 3 groups ( breakfast – lunch – dinner) and a big grey section with nothing from what I added
Hi,
I think I understood why this issue is happening. It is probably because the animation is not defined for the 4th group element.
Please open ‘myCustom.js’ file in ‘assets/js’ directory of your project and find the following lines of code (should be near line no. 710):
$('.food-solutions').waypoint(function() {
setTimeout(function(){$('.food-menus:nth-of-type(3)').addClass('animated fadeInRight')},100);
}, { offset: '-40%' });
Add the following code just below those lines:
$('.food-solutions').waypoint(function() {
setTimeout(function(){$('.food-menus:nth-of-type(4)’).addClass('animated fadeInLeft’)},100);
}, { offset: ‘-80%' });
I think this should fix the issue. In case the issue still remains, please mention the site URL so that we can take a closer look.
Thanks and regards
Thanks this worked perfectly 
Have you noticed that the order page not showing any selected items if you use IE browser. It’s showing correctly in Firefox and Chrome. Can yoy pleace correct it, thanks a lot!
Hi,
Thank you for pointing this out. We are looking into this issue currently and will update the theme accordingly as soon as we correct it.
Thanks and regards
Hi. This theme is awesome, i am using it for some time now, but the only problem i have is with the popup from food order. After the order is sent, the popup is still in front, when it should be closed after x seconds. Also, the popup should close when you click anywhere in the body on the page not just on X mark on the top right of the popup.This 2 things really bothers me and affects my order system.
Hi,
Can you please share your URL to review it.
Thanks and Regards
the dropdown menu on the heading is not working on mobile phones
what files changed on the last update?
Hi,
The dropdown menu of our demo links seems to be working fine on Android as well as iOS mobile phone at our end.
Please give us the link to your site so that we can take a closer look at the issue you are facing.
Thanks and regards
I am using the old version of your theme. Pls send your email and i will contact you.
Our email is: 0effortthemes@itobuz.com
Hi,
We had a look at your site, one of your dropdown isn’t working in mobile while the other one is working.
This issue has been fixed in one of the updates of our theme, along with other features and fixes. You can try downloading the latest version and check it out.
Thank you. Do i update the html of header or i need to update also the js and css and style?
It will be best to update all of them, but do keep a backup of your current site in a separate directory before updating (just for safety purposes, in case you have made any custom changes).
hi, all updated as you said and I have a problem now, the image bg on the home page will not load until i scroll down then up. I will send you a private email with the link and wpuld appreciate if you can reply today
Hi,
We have already replied to your email on that day itself. Hope we have been able to resolve your issues and answer the questions to your satisfaction? Let us know if they worked.
Thanks and regards
Hi,
Thank you for your reply. This issue is recent, I changed the header style to header 3 I think, then the bg image is not loading again unless i scroll down to second section then I scroll up again. I sent an email and no one responded yet.
Hi,
Try this. Open up ‘myCustom.js’ file in the ‘_assets/js’ directory of the project and find the following lines of code (should be near line no. 683) :
$('.homepage .top-content').waypoint(function() {
setTimeout(function(){$('.homepage .sub-heading h2').addClass('animated fadeInRight')},100);
setTimeout(function(){$('.homepage .sub-heading h6').addClass('animated fadeInLeft')},100);
setTimeout(function(){$('.homepage .top-content > img').addClass('animated fadeInUp')},100);
}, { offset: '20%' });
Replace the above code with the following code:
$('.homepage .top-content').waypoint(function() {
setTimeout(function(){$('.homepage .sub-heading h2').addClass('animated fadeInRight')},100);
setTimeout(function(){$('.homepage .sub-heading h6').addClass('animated fadeInLeft')},100);
setTimeout(function(){$('.homepage .top-content > img').addClass('animated fadeInUp')},100);
}, { offset: '100%' });
This should do the trick. Check and see if this issue is resolved.
Thanks and regards
Hi. Love the theme. Having trouble with the Google Maps. I’ve entered the correct long and lat coordinates and I’m receiving two errors.
One error says there are no API keys, while the other says “missing key map error”. Any help would be much appreciated. Thank you in advance.
Hi there,
Could you please give us the link to your site, so that we can take a closer look?
Thanks and regards, 0effort Team
Hello,
It seems you’ve not used Google Maps API key. To get API key, follow these steps:
1. Visit the APIs Console at https://code.google.com/apis/console and log in with your Google Account. 2. Click the Services link from the left-hand menu. 3. Activate the Google Maps API v3 service. 4. Click the API Access link from the left-hand menu. Your API key is available from the API Access page, in the Simple API Access section. Maps API applications use the Key for browser apps.
For more detail you can visit this link: https://developers.google.com/maps/documentation/javascript/tutorial on how to correctly set API key.
Thanks,
Hello, very nice your template. I read the documentation and can not find anywhere the instructions to set the calendar. All I understand is that the month and date are automatically updated, but not discovered how to add new events. I am looking forward to your response. Thank you
Hello there,
I’m guessing you mean the calendar on the Event page? Really sorry about that and thank you for pointing out the missing documentation. We will update our documentation soon.
To add your own events to the calendar in the Event page, please open the file named ‘data.js’ in ‘_assets/js’ folder. You will find some events already listed in a format like this :
var codropsEvents = {
'09-16-2015' : '<a href="http://tympanus.net/codrops/2012/11/23/three-script-updates/" title="Three Script Updates">Three Script Updates</a>',
....
...
}
You can add new events in the same manner as shown in the above line, where you can add the date of the event, the link to the event and the name of the event.
I hope I was able to help you out with this issue. Let us know if you need any further help. Also, if you liked our template and support, please rate our theme (incase you haven’t already). To rate our theme, please follow the link : http://themeforest.net/downloadsThanks and regards, 0effort Team
Please. Help me. How do I change the map? Thank you very much in advance.
Hi,
For change in Map please follow the instructions below :
1. For Main Shop Location : You need to change it from Spice Options -> Footer you can add Long and Lat for the Map.
2. For adding more you need to Go Location Menu and Add More Location. You can point your location in Google Map and It will add your Long and Lat automatically ad will show inside the map.
Please let me know if you need any further help.
Thanks and Regards
I could not do it. My file is in html, not wordpress. I wanted to know if you have to modify the map for html or css
In which file can modify
Hi,
Sorry about the previous reply, we mistook it to be the Wordpress theme.
To change the location of the map, please open the ‘myCustom.js’ file in ‘_assets/js/’ folder and find the following 2 lines of code (they should be at line no. 21 and 39 respectively) :
center: new google.maps.LatLng(-34.397, 150.644),
var myLatLng = new google.maps.LatLng(-34.397, 150.644);
The ‘-34.397, 150.644’ values are the Latitude and Longitude values respectively. Enter the Latitude and Longitude values of the place you want to show on the map at both the lines mentioned above.
Hope we were able to help you with your issue.
Thanks and regards, 0effort Team
Thank you. Now I have another question: When I change the icons for the fa-instagram for example, does not work.
Hi,
Can you please share your URL and explain your problem little bit more to us.
Thanks and Regards
This is a url: http://tomatecaqui.com.br/dev/contato.html
In the SOCIALIZE WITH US , the icons , moved to fa – instagram and did not work. the icon disappears
Hi,
We found the issue and will send you the solve soon.
Thanks and Regards
Hello,
Please add the following css.
.instagram {
background: #3f729b;
}
Hopefully, this will sort out.
Thanks,
Now it worked. Now please help me with:
Now it worked. Now please help me with: i class = “fa fa-tripadvisor”
Hi,
Firstly, you will need to download the latest Fontawesome css file from https://fortawesome.github.io/Font-Awesome/ After you download the zip from the above link, extract that zip and find a file named ‘font-awesome.css’ in the CSS folder of the extracted zip.
Copy the ‘font-awesome.css’ file, then go into your project folder and paste the file inside the DIST folder. You will be asked whether you want to replace an already existing file with the same name, click ‘Yes’.
After that, please open your ‘contato.html’ file and find the following lines of code:<a href="#" class="instagram"> <i class="fa fa-instagram" /> </a>After you find the above code, add the following line of code just after it:
<a href="#" class="tripadvisor"> <i class="fa fa-tripadvisor" /> </a>Finally, please open the ‘style.css’ file located in the project root folder and add the following line of css code at the very end of the file:
.tripadvisor {
background-color: #3E8527;
}
That’s all. Let us know if we were able to help you out.
Thanks and regards, 0effort Team
Excuse me. More it did not work. The icons are gone. Leaving only the circles . look: https://drive.google.com/file/d/0Bw7BzFu2Tc_fMEhTWGlaeE1QRDg/view?usp=sharing
Hi,
I just checked the link that you had shared before: http://tomatecaqui.com.br/dev/contato.html Is the above link correct?
The icons seem to be coming fine, except for just the background colour of the Instagram icon. Screenshot: http://0effortthemes.com/TESTS/screenshot.png
Hello… Is there a way of avoiding the main logo to reduce it’s size when scrolling the page?
Hi,
Yes, it can be avoided. But to direct you properly, we will need to know which header option you are using. Could you please share the link to your site so that we can checkout the header type, and guide you accordingly?
Thanks
I’m using the default header. I’m working my site offline.
Okay. Thank you for the information.
Please find the following line of code in ‘style.css’ file (should be near line no. 13188) :
header.default.is-fixed .logo h1 {
height: 60px;
}
Delete or comment out the the above line and check once if that did the trick. Let us know if it did.
Thanks
On the newest release of your application did you fix the following issues?:
I have purchased theme, i am finding difficulty to update menu, i have dropdown at number 2, its not working, if i place dropdown at no. 5(last) its working, how can i fix it?
I did. I put in 78753 which is my local zip code and the validation error said that it required at least six digits for the pin code to operate properly. I think that this is another thing that you need to fix.
0effortthemes 0effortthemes AUTHOR 11 months ago Flag Oops, my bad. The validation of this form requires 6 digit to be entered. You can change that in ‘myCustom.js’ file , line no. ~475… $(”#map-search-form”).validate({ rules:{ mapCity:{required: true}, mapPin:{required: true,number:true,minlength:6} }, submitHandler: function (form) { return false; } }); In the above lines of code, you can make changes in the line mapPin:{required: true,number:true,minlength:6} and change minlength to any desired value or you can also remove it, whichever suits your needs. Let us know if this helped.
Also when you order on the menu, the menu items that you selected persist in memory and you can order stuff and send an email on it. How does that work with Javascript or a back end database to maintain the memory of the items selected in the menu.
Hi,
Yes, the dropdown issue is fixed. It will function normally at any location in the nav menu.
The issue with the zip code is not really an issue. It is just the different formats of zip code used in different countries. The user can adjust according to his/her need as it is not very difficult to do, and we are always here to help the customer in that regard.
About the Menu page, since this is just a front-end template, we have not added any extra backend database for this template. The data of the menu items are provided in the html itself in each list items of menu items.
For example, in ‘menu.html’ :li data-name='Glazed Carrot Cake' data-price='13.29' class="own"
As you can see in the above example, the name of the menu item above is ‘Glazed Carrot Cake’ and the price is $’13.29’.
As the user selects any menu item, the ‘data-name’ and ‘data-price’ of those items are stored in a temporary array type variable with the help of jquery in line no. 163 of ‘myCustom.js’ :
ele=$(this).closest('li').data('name')+':'+$(this).closest('li').data('price');
Finally, when the ‘Order Now’ button is clicked, the selected menu items are retrieved from that array and displayed to the user and the same values are emailed to him/her as well.
hey there, i would like to reset the contact form after clicking on submit. what should i do?
there is just ”<button class=”red-btn button”>Send</button>” in the code, thanks
Hello,
In your index.html find this code block:
$("#contact-us-form").validate({
rules:{
contactName:{required: true},
contactEmail:{required: true,email:true},
contactComment:{required: true}
},
submitHandler: function (form) {
var suburl = 'mail.php',
contactName=$("#contactName").val(),
contactEmail=$("#contactEmail").val(),
contactComment=$("#contactComment").val();
$('#contact-us-form .form-message').show();
var data={'formid':'contact-us-form','cust_name':contactName,'comments':contactComment,'cust_email':contactEmail};
$.post(suburl , data , function(response){
$('.contact-form-msg').html(response);
$('.contact-form-msg').show();
$( '#book-table' ).each(function(){
this.val(); //CLEARS THE FORM AFTER SUBMISSION
});
});
return false; }
});
and, replace with this code:
$("#contact-us-form").validate({
rules:{
contactName:{required: true},
contactEmail:{required: true,email:true},
contactComment:{required: true}
},
submitHandler: function (form) {
var suburl = 'mail.php',
contactName=$("#contactName").val(),
contactEmail=$("#contactEmail").val(),
contactComment=$("#contactComment").val();
$('#contact-us-form .form-message').show();
var data={'formid':'contact-us-form','cust_name':contactName,'comments':contactComment,'cust_email':contactEmail};
$.post(suburl , data , function(response){
$('.contact-form-msg').html(response);
$('.contact-form-msg').show(); $('#contact-us-form input').val('');
$( '#book-table' ).each(function(){
this.val(); //CLEARS THE FORM AFTER SUBMISSION
});
});
return false; }
});
Please let us know, if this fixes your issue.
Thanks,
0effortthemes
thanks for your fast reply.. it works, thanks a lot, but not on the message/comment and the Occasion fields and the checkboxes.. where is the mistake? (i also try to use it in the reserve form)
Hi,
One of the checkboxes in the ‘Book Table’ form will have to remain selected by default (even when the form is reset). Same thing applies for the dropdown list, as the dropdown list cannot be cleared like input fields.
Still, could you please share the link of your site with us, so that we can take a closer look and see if we can work around it?
Thanks,
0effortteam.
hello, you can find my site here: www.formidable-events.de when you scroll down on the index.html you can see “Online Anfrage”. This ist the form i would like to clear
Hello,
In your index.html can you please find this script block:
/*----------------------------------------------------*/
/* FORM VALIDATION
/*----------------------------------------------------*/
$("#reserve-form").validate({
rules:{
reservationName:{required: true},
reservationPhone:{required: true,number:true,minlength:8},
reservationEmail:{required: true,email:true},
reservationFirma:{required: false},
reservationGast:{required: true},
reservationBudget:{required: false,number:true},
reservationNachricht:{required: true},
reservationOccasion:{required: true},
locationOccasion:{required: true},
timepicker:{required: false},
datepicker:{required: true},
},
submitHandler: function (form) {
var suburl = 'mail.php',
reservationName=$("#reservationName").val(),
reservationPhone=$("#reservationPhone").val(),
reservationEmail=$("#reservationEmail").val(),
reservationFirma=$("#reservationFirma").val(),
reservationGast=$("#reservationGast").val(),
reservationBudget=$("#reservationBudget").val(),
reservationNachricht=$("#reservationNachricht").val(),
reservationOccasion=$("#reservationOccasion").val(),
locationOccasion=$("#locationOccasion").val(),
dine='',
drink='',
zusatz='',
timepicker=$("#timepicker").val(),
datepicker=$("#datepicker").val();
$(".clrd").each(function(){
if ($(this).is(':checked')) {
dine=$(this).val();
}
});
$(".dlrd").each(function(){
if ($(this).is(':checked')) {
drink=$(this).val();
}
});
$('#reserve-form .form-message').show();
var data={'formid':'reserve-form','cust_name':reservationName,'cust_phone':reservationPhone,'cust_email':reservationEmail, 'cust_firma':reservationFirma, 'cust_gast':reservationGast, 'cust_budget':reservationBudget, 'cust_nachricht':reservationNachricht, 'occasiontype':reservationOccasion,'occasiontype2':locationOccasion,'dine':dine,'drink':drink,'tp':timepicker,'dp':datepicker};
$.post(suburl , data , function(response){
$('.reservation_final_msg').html(response);
$('.reservation_final_msg').show(); $('#reserve-form input').val('');
$( '#book-table' ).each(function(){
this.val(); //CLEARS THE FORM AFTER SUBMISSION
});
});
return false; }
});
}); //========DOCUMENT.READY ends============
and the, replace it with this:
/*----------------------------------------------------*/
/* FORM VALIDATION
/*----------------------------------------------------*/
$("#reserve-form").validate({
rules:{
reservationName:{required: true},
reservationPhone:{required: true,number:true,minlength:8},
reservationEmail:{required: true,email:true},
reservationFirma:{required: false},
reservationGast:{required: true},
reservationBudget:{required: false,number:true},
reservationNachricht:{required: true},
reservationOccasion:{required: true},
locationOccasion:{required: true},
timepicker:{required: false},
datepicker:{required: true},
},
submitHandler: function (form) {
var suburl = 'mail.php',
reservationName=$("#reservationName").val(),
reservationPhone=$("#reservationPhone").val(),
reservationEmail=$("#reservationEmail").val(),
reservationFirma=$("#reservationFirma").val(),
reservationGast=$("#reservationGast").val(),
reservationBudget=$("#reservationBudget").val(),
reservationNachricht=$("#reservationNachricht").val(),
reservationOccasion=$("#reservationOccasion").val(),
locationOccasion=$("#locationOccasion").val(),
dine='',
drink='',
zusatz='',
timepicker=$("#timepicker").val(),
datepicker=$("#datepicker").val();
$(".clrd").each(function(){
if ($(this).is(':checked')) {
dine=$(this).val();
}
});
$(".dlrd").each(function(){
if ($(this).is(':checked')) {
drink=$(this).val();
}
});
$('#reserve-form .form-message').show();
var data={'formid':'reserve-form','cust_name':reservationName,'cust_phone':reservationPhone,'cust_email':reservationEmail, 'cust_firma':reservationFirma, 'cust_gast':reservationGast, 'cust_budget':reservationBudget, 'cust_nachricht':reservationNachricht, 'occasiontype':reservationOccasion,'occasiontype2':locationOccasion,'dine':dine,'drink':drink,'tp':timepicker,'dp':datepicker};
$.post(suburl , data , function(response){
$('.reservation_final_msg').html(response);
$('.reservation_final_msg')
.show()
.delay( 1000 ) //Change timing here in milliseconds.
.queue(function() {
$(this).hide();
$(this).dequeue();
});
//To reset form as it defaults in HTML
var form = document.getElementById('reserve-form')
form.reset();
$( '#book-table' ).each(function(){
this.val(); //CLEARS THE FORM AFTER SUBMISSION
});
});
return false; }
});
}); //========DOCUMENT.READY ends============
Hope, this would sort out things.
If you like our theme, please rate us in themeforest with 5 stars. 
Thanks, 0effortthemes
now it works, thank you for that.. but now, the information “your message has been send successfully” isn`t shown yet, can i add this? it was written in red beside the “Send” button
Hello,
I’ve added a timeout of 1 second, so I guess it’s getting hidden, before you can see it.
If you see the following code:
$('.reservation_final_msg')
.show()
.delay( 1000 ) //Change timing here in milliseconds.
.queue(function() {
$(this).hide();
$(this).dequeue();
});
there is .delay( 1000 ) //Change timing here in milliseconds. function.
Actually, this function helps in automatically hiding the success message. If, you don’t want this functionality, you can remove from .delay( 1000 ). So that the code reads like:
$('.reservation_final_msg')
.show();
Let me know, if this helps.
Thanks,
0effortthemes
great, thanks a lot.. now i can rate with 5 stars 
Hello,
I’m glad I could help you out with this issue.
Thanks, 0effortthemes
Hi, I bought this fantastic template and working on it right now. I have two questions: 1. Food gallery has oval pictures, how to change it for rectangle? 2. At the bottom is google maps with option to find city. How to change it for one specific address?
Thanks for help. Best regards.
Hello,
Thank you purchasing our theme.
1. For rectangle item pictures in ‘Food Gallery’ page, please find the following line in ‘style.css’ (should be somewhere near line no. 10754) :
.food-gallery .food-item .figure {
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
}
From the above code, please delete the line:
border-radius: 50%;This should remove the circular shape from the item images.
2. I’m sorry but I didn’t quite understand clearly this point about the specific address.
The purpose of the map section in our theme is that when a user enters a city/pincode(zipcode) of the user’s choice, the map will show the location of the restaurant closest to that pincode/zipcode entered by the user.
The city & pincode/zipcode is being used to specify a locality/area in that city. Could you please explain how you would want to use the exact address in this case?
Thanks
Ok, I got square but I need rectangle without changing height
And about the map, the problem is that I have only one restaurant, so I think in my case I don’t need this map.
1.
you can add this CSS code, at the end of your desktop.css :
.food-gallery .food-item .figure {
width: 100% !important;
}
2.
Regarding, the Google map, you can remove the following code from your html file. This will remove the map search form.
<article class="city-search clearfix">
<div class="search-caption">
<h4>WE ARE</h4>
<h4>AT YOUR CITY</h4>
</div>
<div class="search-form">
<form>
<input type="text" placeholder="Enter your city name">
<input type="text" placeholder="Enter your pincode">
<button>FIND NOW</button>
</form>
</div>
</article>
To change the location of the map pointer, please update the latitude and longitude in your myCustom.js (this file is at: {{Your root folder}}/_assets/js/myCustom.js) in line no. 14 and line no. 32.
You can use services like http://www.latlong.net/ to find the latitude and longitude of your address.
Let us know, if this helps.
We would really appreciate if you can spare few minutes and rate our theme (with 5 stars).
Thanks,
Yes, it helped, thanks! Another question, in index.html there’s PLACE ORDER. I need to delete OR. How to do this?
In your ‘style.css’ file, find the following lines of code (should be near line no. 12127) :
.place-order .call:after {
content: 'Or';
position: absolute;
top: 50%;
right: -18px;
border: 1px solid #C34136;
border-radius: 50%;
padding: 8px;
color: #fff;
z-index: 2;
background-color: #DB4F44;
margin-top: -18px;
width: 40px;
height: 40px;
}
From the above code, just delete the following line :
content: 'Or';
That should completely remove the ‘OR’ circle.
Thanks, last help: i need to add e-mail address for newsletter and contact. where and how to do this? thanks!
For Newsletter, you will need to create a Mailchimp account. After creating a Mailchimp account, you will also need to create a new Subscription list, where the future subscribers’ email ids will be listed.
You will need to obtain 2 keys from the Mailchimp account: 1. mailchimp api key (http://kb.mailchimp.com/accounts/management/about-api-keys),
2. mailchimp list id (http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id) Please follow the respective links given above to find out how to obtain the respective keys.
After you have obtained the keys, you will need to open the ‘check.php’ file in the root folder of our theme and replace the values of the 2 variables ’$api_key’ and ’$list_id’ with the respective keys that you have obtained from your Mailchimp account.
$api_key = "acf0e986d868db1546ae460c65053cdb-us9"; $list_id = "34901b4480";
That’s it for the newsletter subscription set up.
There are 2 Contact Forms in this theme: one is in the lower part of the Homepage, while the other is in the ‘Contact us’ page.
To change the email address for both of the forms, please open the ‘mail.php’ file in the root folder and find the following lines of code (should be near line no. 42) :
if($_POST['formid']=='contact-us-form'){
$name=$cust_name=$_POST['cust_name'];
$email=$_POST['cust_email'];
$email_to_send_to='sagarsneh@gmail.com';
$email_subject="AWESOME SPICES - A customer contacted you";
$comments=$_POST['comments'];
}
if($_POST['formid']=='contactForm'){
$name=$cust_name=$_POST['cust_name'];
$email=$_POST['cust_email'];
$email_to_send_to='sagarsneh@gmail.com';
$email_subject="AWESOME SPICES - A customer contacted you";
$comments=$_POST['comments'];
}
In both of the above block of codes, change the email address in the following line to your desired email address:
$email_to_send_to='sagarsneh@gmail.com';That’s all for setting up Contact.
Ok, made it. But, when I write an e-mail for newsletter and click an arrow I got blank page, but address is added for my subscription list. Strange but works. When I fill contact details and click “send” I got also blank page but no message.
Hi,
Do you mean pressing the submit button is redirecting you a blank page? That’s weird. It should display a success or failure message near the form itself, depending upon whether it was successfully sent or not.
Could you please share the link of your site so that we can take a closer look at the issue? Also, please share the entire code of your ‘mail.php’ file so that we can check that too.
Thanks
Hi,
We noticed there is a <script> at the end of your html pages, after end tag. That script is probably conflicting with the ajax response of the Newsletter and Contact forms.
Please remove the complete <script> after the end tag and check if the issue still exists.
Hi, on every html page or just index?
Hi,
Just on the pages that contain the Newsletter and Contact forms.
I’m sorry but you have to write me exactly what I should remove.
Hi,
Sorry about that.
<script type="text/javascript"><!--
document.writeln('<'+'scr'+'ipt type="text/javascript" src="http://home.hit.stat24.com/_'+(new Date()).getTime()+'/script.js?id=1wAwre_vkwgPcH6_k1M9M4aw3wlRnce.cIwxVeW_j5D.57"></'+'scr'+'ipt>');
//--></script>
Please check if the above code is present in your ‘mail.php’ file. If it is present, please remove and check if the submit issue still persists or not.
If incase the issue still persists, then please find and remove the above code at the bottom of ‘index.html’ and ‘contact-us.html’ files as well.
Hi. There was no code in any of this files.
The above link is a screenshot of what we are being able to see in your ‘index.html’ and ‘contact.html’ file, after viewing the page source. Notice the area marked in Red, at the end of the screenshot. This seems to be present in all of your html pages, once the source of the pages are viewed.
We can’t view your ‘mail.php’ file, but there could be a high possibility that the script is there as well. If you can’t see it in your files or if you haven’t added them, we suspect that the html files has been affected by virus.
I am working on mac, no viruses found. Last lines of index.html are: </script>
<!- bxSlider Javascript file ->
<script src="_assets/js/jquery.bxslider.min.js"></script>
<script src="_assets/js/myCustom.js"></script>
<script src="_assets/js/menu-food-carousel.js"></script>
<!- ====================================== ->
Hello,
Can you please mail us your ftp details at 0effortthemes@itobuz.com, so that we can have a look.
Thanks, 0effortthemes
First thank you for your earlier support. Can you help with the set up the newsletter, do I need to create a mailchimp account? Last question can the google map at bottom of page be set up to show directions to the store? Thanks in advance Kind Regards
Hi,
Thank you for your patience. Yes, you will need to create a Mailchimp account. After creating a Mailchimp account, you will also need to create a new Subscription list, where the future subscribers’ email ids will be listed.
You will need to obtain 2 keys from the Mailchimp account: 1. mailchimp api key (http://kb.mailchimp.com/accounts/management/about-api-keys),
2. mailchimp list id (http://kb.mailchimp.com/lists/managing-subscribers/find-your-list-id) Please follow the respective links given above to find out how to obtain the respective keys.
After you have obtained the keys, you will need to open the ‘check.php’ file in the root folder of our theme and replace the values of the 2 variables ’$api_key’ and ’$list_id’ with the respective keys that you have obtained from your Mailchimp account.
$api_key = "acf0e986d868db1546ae460c65053cdb-us9"; $list_id = "34901b4480";
That should complete the newsletter subscription set up.
About the google map directions, presently the map section of our theme has been set up to show one location. To show directions, the map api will have to be customized. If you want this feature through customization, please mail us at 0effortthemes@itobuz.com
Thanks and regards.
Hello! First of all, great design! Are the PSD’s also included? Thanks in advance! Regards
Thanks! PSD is available separately at http://themeforest.net/item/awesome-spiceone-page-restaurant-theme/7873061