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.

Great Looking Template! Easy to use and to customize! The one problem I’m having is the contact form, I am receiving a email with the subject header but no info like name, email, phone number, message etc etc. Any help would be great!

Sorry didn’t get back to yo sooner I solved the issue with contact form. Again Thank you! My next problem is that the website is not working on Firefox and IE I’m not so worried about IE due to the fact the it sucks and there not supporting and Microsoft is coming out with a new browser name Spartan so my question is it seems that the Clearfix is not compatible with firefox or IE so I see there is a hack I was wondering is there an easy work around and if not how much would you charge to get the site to work on firefox and IE

Kindly email me on 0efforththemes@itobuz.com and we can discuss about this, meanwhile we will be pushing the updates soon to fix this.

Sorry for the mistake. Our mail id is

0effortthemes@itobuz.com

Hi, I’m interested to purchase your theme, but i wonder if i will get a support to make the reservation/contact function works since i’m not familiar with the php. i look forward. thank you

Thank you. another questions: 1. is it possible the homepage has one page layout (scroll) 2. is it possible to make the header menu stay on the top when scrolled 3. do you have a page with a price list table for service price? 4. do you do custom work, for editing css/style?

look forward to hearing from you.

regards

Hi,

Answering your questions….

1. Sorry,this theme cannot be made into a one-page layout. But it can be re-built to turn it into a one-page layout.

2. Yes, it is possible to make the header stick to top when scrolled down. For that, customization is required.

3. Sorry, this theme does not have a price list page.

4. Yes, we do custom work.

For more details, please mail us at 0efforththemes@itobuz.com

Sorry for the mistake. Our mail id is

0effortthemes@itobuz.com

hey, i have a question. how can i change the hover color of the navigation-bar? i can`t find it in the style.css

now it looks great, thanks :) but my contact form doesn`t word.. could you please check where is the mistake under http://www.formidable-events.de/kontakt.html

thank you for your help!!

could you please help me.. my site is online but i can`t find the mistake.. the form jumps to the top of the page by clicking on submit

Since we have solved this issue on the forum, anyone else having the same issue can look it up on our support forum.

Hi, Its awesome template, thanks. One tiny problem thus. I’m changing the language of the website and found in the “place order” box is impossible to change the word “or”. How could I change or remove it?

Hello,

The “Or” is actually coming from css. In ‘style.css’, find the following code (should be near line no. 12080)...
.place-order .call:after {
content: 'Or';
position: absolute;
top: 50%;
right: -20px;
border: 1px solid #C34136;
border-radius: 50%;
padding: 8px;
color: #fff;
z-index: 2;
background-color: #DB4F44;
margin-top: -18px;
width: 40px;
height: 40px;
}
If you want to remove it, then delete/comment out these lines.

If you want to change the language, you can change the ‘content’ in the second line of the above code.

Thanx, it helped. I searched it from css but just didn’t notice it. One more question. Does the buttons start properly working just online. (ie “order now” takes to the page start when offline)?

Hi,

Actually the “Order Now” button should be linked to the “Menu” page. It is presently not linked to any page, and has ’#’ at its “href” attribute. That is why it is jumping to top of page when clicked.

In “index.html”, find the following line (should be near line no. 132)...
<div class="order">
<a class="button white-btn scale-btn" href="#">order now</a>
</div>
Change the href attribute from “#” to “menu.html” or whatever is the name of your menu page. That should do the trick. Let us know if it worked.

hello , I would like to make a normal photogallery 3 or 4 columns that it opens with fancybox …. can you help?

I solved it by changing the style of .side-event-img-wrapper width: 100% .side-event-images .img-wrapper width: 25

Good going! I’m glad that you were able to solve it. :)

Hi,

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?

Hello,

I see the problem. Thank you for bringing it to our notice. Make the following changes and check if it solves the problem…

1. In ‘style.css’, find the following lines of code (should be near line no. 11400):

#navigation-list .navbar-nav > li:last-of-type,
#navigation-list .navbar-nav > li:first-of-type
.desktop-nav-menu > li:last-of-type,
.desktop-nav-menu > li:first-of-type { position: relative; }

#navigation-list .navbar-nav > li:last-of-type,
#navigation-list .navbar-nav > li:first-of-type { overflow: visible; }
Replace the above code with the following:
#navigation-list .navbar-nav > li,
.desktop-nav-menu > li { position: relative; }

#navigation-list .navbar-nav > li { overflow: visible; }

2. In ‘dist/desktop.css’, find the following lines of code (should be near line no. 192):

#navigation-list .navbar-nav > li:last-of-type:hover ul,
#navigation-list .navbar-nav > li:first-of-type:hover ul,
.desktop-nav-menu > li:last-of-type:hover ul,
.desktop-nav-menu > li:first-of-type:hover ul { max-height: 650px; }
Replace the above code with the following:
#navigation-list .navbar-nav > li:hover > ul,
.desktop-nav-menu > li:hover > ul { max-height: 700px; }

3. In ‘assets/js/myCustom.js’, find the following lines of code (line no. 422):

/*----------------------------------------------------*/
/*  HEADER SUB-MENU CLICK-TO-SHOW IN TAB + MOBILE
/*----------------------------------------------------*/
if ($(window).width() < 992)
{
  $("#navigation-list .navbar-nav > li:last-of-type").click(function(){
    $(this).find("ul").css("max-height",700);
  });
  $("#navigation-list .navbar-nav > li:first-of-type").click(function(){
    $(this).find("ul").css("max-height",700);
  });
  $("ul.navbar-nav").mouseleave(function(){
    $("#navigation-list .navbar-nav > li:last-of-type ul").css("max-height",0);
    $("#navigation-list .navbar-nav > li:first-of-type ul").css("max-height",0);
  });
}

$(window).resize(function() {
  if ($(window).width() < 992)
  {
    $("#navigation-list .navbar-nav > li:last-of-type").click(function(){
      $(this).find("ul").css("max-height",700);
    });
    $("#navigation-list .navbar-nav > li:first-of-type").click(function(){
      $(this).find("ul").css("max-height",700);
    });
    $("ul.navbar-nav").mouseleave(function(){
      $("#navigation-list .navbar-nav > li:last-of-type ul").css("max-height",0);
      $("#navigation-list .navbar-nav > li:first-of-type ul").css("max-height",0);
    });
  }
  if ($(window).width() >= 768) { wayPoint(); }
});
Replace the above code with the following code:
/*----------------------------------------------------*/
/*  HEADER SUB-MENU CLICK-TO-SHOW IN TAB + MOBILE
/*----------------------------------------------------*/
if ($(window).width() < 992)
{
  $("#navigation-list .navbar-nav > li").click(function(){
    $(this).find("ul").css("max-height",700);
  });
  $("ul.navbar-nav > li").mouseleave(function(){
    $(this).find("ul").css("max-height",0);
  });
}  

$(window).resize(function() {
  if ($(window).width() < 992)
  {
    $("#navigation-list .navbar-nav > li").click(function(){
      $(this).find("ul").css("max-height",700);
    });
    $("ul.navbar-nav > li").mouseleave(function(){
      $(this).find("ul").css("max-height",0);
    });
  }
  if ($(window).width() >= 768) { wayPoint(); }
});

Let us know if that does the trick.

Hi,

Appreciate your fast response, problem is solved, css code you metion in (dist/desktop.css) is in line 217 in my css file, also dropdown popup(sub menu pop up) gone fast when we move mouse to dropdown content

Hi,

Make the following changes and I believe the issue will be solved.

1. In ‘style.css’, find the following line of code (should be somewhere near line no. 12470 ~ 12490)..... #navigation-list .navbar-nav a:hover > i { Replace the above line with …. #navigation-list .navbar-nav a > i { 2. In ‘_assets/js/myCustom.js, find the following code (should be near line no. 79) .... $(".navbar-nav").hover(function(){ $(this).css('overflow','visible'); },function() { $(this).css('overflow','hidden'); }); Replace the above code with the following… $(".navbar-nav").hover(function(){ $(this).css('overflow','visible'); },function() { $(this).delay(500) .queue(function(next){ $(this).css('overflow','hidden'); $( this ).dequeue(); }); });

Let us know if it worked. Thank you for your patience.

How does your twitter feed work on the social media web page? How does that work? Can you explain please?

I’m sorry, but the twitter feed in the social media page is just a template right now. To add your twitter feeds, you will need to add a twitter widget there. You can have a look at the following links for more info on how to add your own twitter feed…

https://dev.twitter.com/web/overview http://www.wix.com/support/html5/editor/social/faq/how-can-i-add-a-twitter-feed

I’ve purchased this theme. But for some reason I an unable to get the street names to show on the map. Can anyone assist me with this?

In assets/js/myCustom.js , line no. 18 …. change the following: “stylers”: [{“visibility”: “off”}] ..... to ….”stylers”: [{“visibility”: “on”}]. That should do the trick.

For more support skype us at “zeroeffortthemes”

That did it. Thank you!

Glad it helped. Don’t forget to leave us a review for the theme :)

some questions: - where can i find the social buttons? - reservation form doesn` t work—> jump to the top by clicking on submit - how can i add fields to the reservation and contact form?

please help, i need it urgently, because my page should go online soon!!

Thanks for purchasing

The social icons are from Font Awesome.

Can you share your link if possible. You can send it at 0effortthemes@itobuz.com

When viewing on a tablet Horizontal, the navbar only shows 3 tabs not the 4th drop down? is there a way to change the spacing? if so where. thanks

Also is there a way to put a navbar on the right as well instead of social links? thanks

I will let you know about this through email.

Love the design, i am ready to buy, please reply asap, when choosing menu items they add to order now, does that work. will i get an email with the choosen menu items a customer sends me when on my website….please tell me yes…! lol thanks…!

is mine

You can reach us at 0effortthemes@itobuz.com and skype at : zeroeffortthemes

ok ty sent email

I’m interested in your theme, however, when testing on it a windows phone swiping to scroll down work find – swiping to scroll back up does not work. Can this be fixed? If so, I will purchase asap.

Thanks for purchasing our theme. We are looking into the issue.

great theme but,

has anyone a working contact form? my site is online, so i need it urgently. i`ve changed the receiver mail but clicking on “submit” the site jumps to the top..

need help please :)

but how can i set the field shown in the mail that i receive.. it just shown me the message, not the name, telephone or e-mail of the sender..

We will be uploading a newer version that will fix this. Thanks for your patience.

What does that mean enter your pin code on the map portion of the website. How does that work?

Pin code is actually the zip code of your address, which is required for order delivery.

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.

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.

Why doesn’t your reservation form work? It is just a front end no-opp thing?

The form works. You can see the message that the mail is sent. No popup though.

Beautiful Template. Like it a lot.

I have just trouble getting the contact form to work. Probably am missing something. All I did so far was changing the receiver mail in the mail.php page and added the following to the contact form in the contact-us.html page: form action=”mail.php” method=”post”

Could not find any info in the doc’s. Any help is much appreciated.

Thanks so much. Joerg

This seems to be a server problem. Can you check with your hosting provider if you can send mails?

Let me know if there is anything I can help with

Yes. We can send mails. Already checked and server is fine. Have you had a chance to look into the mail.php page online to see whether I have the settings correct? And where is the variable in the contact page itself? I was not able to see this.

I will check the server again right not just in case.

I see that in your contact form that the input element name has been changed. If you didn’t change the same in mail.php please change it or replace the code for contact form in mail.php with following code :

if($_POST[‘formid’]==’contactForm’) { $name=$cust_name=$_POST[‘contactUsName’]; $email=$_POST[‘contactUsEmail’]; $email_to_send_to=’ ’; $email_subject=”Contact2”; $comments=$_POST[‘contactUsMsg’]; }

NOTE : for further help please contact on skype : zeroeffortthemes

Thinking of purchasing this. Does the download include PSD files for the images?

Sorry mate we are not providing the PSD files with this HTML version. You can separately purchase the PSD version, but we cannot provide you the images as it is against the envato rules. But we provided all the image links in the description. If you need those images you can contact the author of the respective images.

I didn’t want to use the pictures since they will be copyrighted to the respective owners, i just wanted the PSD to update it with my own pictures. Now i purchased and looked at it, it actually has place holders with the dimension of the image files which is what i needed to work with my own pictures. Thank you for a really awsome template!!

Glad you liked it, don’t forget to leave us a review.

simply amazing! thank you for your time and efforts!

Thanks for purchasing. Can you please provide a review :)

Great work done. Congrats and GLWS :)

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