ThemeForest

Bonjour - Cafe & Restaurant WordPress Theme

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

anyone upgrade to the latest version of wordpress? any issues with this theme?

SakuraPixel

Hello nunman216,

We’ve manage to update all our themes to WP 3.5 but this one, I believe this will work fine on WP 3.5, however I will test it properly Monday and make an update is necessary.

cheers! sakurapixel

Default-user

any word on if it works?

SakuraPixel

Hello,

Yes it works, we have test it and haven’t spot any bug, so you can go ahead and update to 3.5.

regards, jayc

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

I bought this theme and I am having serious issues – One I emailed you directly and still no response, over 3 days ago…

1. Post -Pages, not working 2. Contact Form not working 3. Background images not working (had to change in css) 4. Want to remove the text from the contact tab – can’t locate this… 5. Need to add images… I saw someone else had done this but not sure how?

Thanks!

SakuraPixel

hello networxtoday , sorry for the delay: 1. yes you can not add regular pages (it’s a simple one page theme) 2. since it does not support regular pages you can not add galleries I don’t know what the user that added galleries did, my guess he added some shortcodes inside small description fileds – I do not recommend that.

The other things that you say don’t work are odd, I will re-test it first thing tomorrow morning.

cheers! jayc

Default-user

I did get it fixed, thanks, It was an issue with the javascript I took out for the preloader…I just removed the image and changed some css on the background & now it works fine:)

I understand it is a 1 page them. What I had sent an email about was if you were interested in building out a few more options as subcontract work? I really loved this layout, however do need it to be a bit more comprehensive…

for now can you- make the fields in the product boxes to have html written to them? I want to be able to add an img src code link, etc. ?

*and – adding a custom feild box for a light box gallery specific to group?

SakuraPixel

hello, just sent you an email

  • Bought between 50 and 99 items
  • Has been a member for 2-3 years

how cai i insert html content in “small description” for example?

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

as soon as i add “days content” the sites hangs and gets stuck in that little animation

http://moldandlead.com/udder/

when i remove it, the site goes back to being operational…

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

disregard, i figured it out.. sorry

SakuraPixel

hello kecster2, did you figure out? it looks to me that your demo still does not work.

Default-user

i fixed it thanks

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
http://moldandlead.com/candy/ this is the site I am working on… where is the code to change: 1. the Menu color, I want the border to stay blue, but I want the days of the week to change from blue to another color.. where is the code for that 2. I want to change the background color of the input boxes on contact form from light blue to something else without changing the theme text colors option
SakuraPixel

hello kecster2, there are no custom option for this within the admin, it has to be done from the CSS, we’re going to take a look and get back to you tomorrow.

Default-user

i know its via css.. can you pleeeeeease help me…

SakuraPixel

Not to worry, we’ll help you, but tomorrow, now it’s nigh time for us :)

SakuraPixel

hello ,

these two are responsible with the menu color:

/* text colors ================================================== */ .textColor01{ color: #f7f3cf; } .textColor02{ color: #353535; }
SakuraPixel

the background colour of the input boxes can be changed by changing:

.backgroundColor01{ background-color: #f7f3cf; }
Default-user

yes, i know this, but how can i change the menu color without changing the other colors that use this same textcolor css code.. i want to assign it .texcolor08 (for example) ... the same for the input boxes, how can i assign it .backgroundcolor06 or something like that, i want to keep other elements the original color and only change this element

SakuraPixel

OK, let’s say that you need two more colors for the menu: please add two classes within the main.css ex:

.menuColor01{ color: #f7f3cf; } .menuColor02{ color: #353535; }


now, please open js/cafebonjour.js and replace this:

menu[menuNo].menuItem.removeClass('textColor02'); menu[menuNo].menuItem.addClass('textColor01');

with this:

menu[menuNo].menuItem.removeClass('menuColor02'); menu[menuNo].menuItem.addClass('menuColor01');
SakuraPixel

I’m searching for an easy solution for the input and get back to you within 10 min

SakuraPixel

OK for the input background, open main.css and add a new class ex:

.backgroundInput{ background-color: #353535; }



now please open header.php and search for all input fields, ex:
<input id="nameF" class="inputText backgroundColor01...

and replace the backgroundColor01 with backgroundInput

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Great looking theme, but I’m having the same problem kecster2 initially had – as soon as i add “days content” the site just shows an animation. When I take the “days content” away, the site comes back. What do I need to do to get this setup correctly?

http://damnfinecoffeecompany.com
SakuraPixel

hello phillijj, Please add a featured image for each day content (this will be the background image).

Default-user

SakuraPixel, got it working. Thanks for the quick response, and gorgeous theme!

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

hello, one last problem. i promise.. http://uddersweets.com/. this is my site.. when i click on anything inside the contacts tab i get an error.. i think i have a problem… where exactly is the code for the contact so i can see whats wrong

SakuraPixel

hello,

The problem is that you have placed an a href inside the code, it wraps all the contact form and when you click it it messes things up, please remove the a, I have drawn a sketch here: http://d.pr/i/bm7s

If you still have problems let me know.

cheers! sakura

SakuraPixel

yeah, one more thing, remove the two lines that the arrows are pointing at.

Default-user

where do i find that line of code?!?

Default-user

<!-contact form/reservations-> <?php echo $themeOptions['contactFOpen'];?>

<?php echo $themeOptions['contactFTitle'];?>

<form>

<?php echo $themeOptions['nameFieldTitle'];?>

<input id=”nameF” class=”inputText backgroundInput fontGentium01” placeholder=”your name” type=”text” name=”name” />

<?php echo $themeOptions['emailFieldTitle'];?>

<input id=”emailF” class=”inputText backgroundInput fontGentium01” placeholder=”email” type=”text” name=”name” />

<?php echo $themeOptions['phoneFieldTitle'];?>

<input id=”phoneF” class=”inputText backgroundInput fontGentium01” placeholder=”phone” type=”text” name=”name” />

<?php echo $themeOptions['messageFieldTitle'];?>

<textarea id=”msgF” class=”inputTextArea backgroundInput fontGentium01”></textarea>

<?php echo $themeOptions['contactFFieldsMsg'];?>

<?php echo $themeOptions['contactFThankYou'];?>

<?php echo $themeOptions[‘contactFSend’];?> </form> <!-/contact form/reservations->
Default-user

sorry i figured it out.. thank you

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

i double checked the contact code… i am not sure why this is happening

SakuraPixel

hi, I have answered above.

Default-user

i cant find the code anywhere

Default-user

sorry i figured it out.. thank you

  • Has been a member for 2-3 years
  • Europe
  • Exclusive Author
  • Bought between 50 and 99 items

HI. One more time good luck with the sales. A couple of questions: 1- Can I translate the theme in another language? 2-How to remove that Week Special logo and replace with something else?

  • Bought between 50 and 99 items
  • Has been a member for 4-5 years
krozo Purchased

Hello. I bought your jolie theme yesterday, sublime! I will also (as gabrielvericat) be happy to know how can i insert html content in “small description”. May be a 3rd party plugin? Evens if i have to touch the code, nevermind! Please, help!

  • Bought between 50 and 99 items
  • Has been a member for 4-5 years
krozo Purchased

In the fact, i want to put a picture, so that the menu looks like description+price+photo.

  • Bought between 10 and 49 items
  • Germany
  • Has been a member for 2-3 years

hello, is there a responsive version planed? Or can I easily transform it to a responsive design?

best regards

holm

SakuraPixel

Hello,

No responsive version is not planed and no it can not be transformed easily to a responsive theme.

Regards, Sakura

Default-user

I need an additional menu for the impress at the bottom line, its mandatory here. how can I add a menu like that?

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hello,

The contact form is not working for me, I did the testing by setting up “The email where to receive the messages” address but I am still not getting the query. Please let me know if I missed something or need to do anything else.

Thanks Kamal

SakuraPixel

hello please send me an email with the URL of your install.

regards, Sakura

  • Bought between 50 and 99 items
  • Has been a member for 4-5 years
krozo Purchased

Hi. I’m waiting for answering 3 weeks already, please, let me know how can we include a photo, along with the text ? Kind regards.

SakuraPixel

Hello krozo,

Ahh , I’m sorry I see lots of comments at once through the dashboard from all the items, it must have slipped away, the theme is la landing page – not an actually web-site , it only does what the preview shows and it can not be easily changed.

regards, Sakura

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
  • United States

I am interested in changing the order in which the Days Content appears above the menu items. However, when I go in an change the “date published” , the site locks up. Any way to change the order without having to retype all my products?

Thanks.

SakuraPixel

Hello,

You can try to use this plugin to change the order of the posts http://wordpress.org/extend/plugins/post-types-order/

regards

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
  • Spain
serlica Purchased

Hello.

I havent seen the answer to Filisencus regarding translation of the theme.

Can the theme be translated with qtranslate?

Thanx in advance

SakuraPixel

Hello , I’m sorry it can not.

by
by
by
by
by