Discussion on Awesome Spice - Restaurant / Cafe HTML Template

Discussion on Awesome Spice - Restaurant / Cafe HTML Template

Cart 477 sales
Well Documented

WordPress-Studio supports this item

Supported

66 comments found.

Hi, all photos and icons disappeard from the website, this happened before and you resolved it, pls assist

Hi,

Can you please create a ticket at our support forum. http://support.0effortthemes.com/

Thanks

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,

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,

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,

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

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 , 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,

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

http://www.niagarafallselvisfestival.com/lee2/ Scroll to the bottom, and you’ll see. Thanks for your help!

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/downloads

Thanks and regards, 0effort Team

Please. Help me. How do I change the map? Thank you very much in advance.

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,

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.

http://0effortthemes.com/TESTS/ScreenShot2015-10-09.jpg

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

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey