Discussion on Bonno - Responsive Multipurpose Template

Discussion on Bonno - Responsive Multipurpose Template

Cart 172 sales
Well Documented

Aisconverse supports this item

Supported

This author's response time can be up to 2 business days.

31 comments found.

I need help! I do not want the contact form feedback function. How would the configuration of PHP, CSS, and JS ?

HTML version…

Hello, and thank you for your interest in our template. You just need to remove the form from the HTML code.

1- Form with this error: Message was not sent. Client error or internet connection problems.

My php code: <?php define(‘EMAIL_ADMIN_SENT_TO’, ‘contato@latitude81.com.br‘); define(‘EMAIL_ADMIN_SUBJECT’, ‘Email de retorno Latitude 81’); define(‘EMAIL_CLIENT_SUBJECT’, ‘Email de retorno Latitude 81’);

$headers = “MIME-Version: 1.0\r\n”; $headers .= “Content-Type: text/html; charset=UTF-8\r\n”; $headers .= “From:contato@latitude81.com.br\r\n”; $headers .= “X-Mailer: PHP/” . phpversion() . ”\r\n”;

$errors = array(); $name = strip_tags(trim(!empty($_POST[‘name’]) ? $_POST[‘name’] : ’’)); $email = strip_tags(trim(!empty($_POST[‘email’]) ? $_POST[‘email’] : ’’)); $message = nl2br(strip_tags(trim(!empty($_POST[‘message’]) ? $_POST[‘message’] : ’’)));

if (empty($name)) { $errors[] = ‘name’; }

if (empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL)) { $errors[] = ‘email’; }

if (empty($message)) { $errors[] = ‘message’; }

$response = array(‘status’ => ‘ok’);

$datetime = date(‘Y-m-d H:i:s’);

$letterToAdmin = <<<MSG

Feedback form
Author: {$name} {$email}
Message:
{$message}

Email was sent at {$datetime}

MSG;

$letterToClient = <<<MSG

Olá, {$name}! 
Sua mensagem foi enviada com sucesso em {$datetime}.

Em breve entraremos em contato {$email}
Sua mensagem: 
{$message} 

Obrigao por entrar em contato!

MSG;

if (empty($errors)) { mail(EMAIL_ADMIN_SENT_TO, EMAIL_ADMIN_SUBJECT, $letterToAdmin, $headers); mail($email, EMAIL_CLIENT_SUBJECT, $letterToClient, $headers); } else { $response = array(‘status’ => ‘error’, ‘errors’ => $errors); }

die(json_encode($response));

What is wrong?

I’m from Brazil sorry for my English. I use google translator

It’s okay, I understand you. Try to create a ticket in our support, I think our command will help you.

How do i find and upload your templated pages so I can use them

Hello, you can download the theme after purchasing it.

Will this be updated to the new Font Awesome ?

Hi,

Yes, the update 1.0.11 on its way right now, keep updated. The update uncludes FontAwesome 4.0.3.

Kind regards, Aisconverse team

Sorry, we were wrong and confused WP and HTML version. The HTML update is in development now and will be available soon.

Hello, I have a pbm with the contact form. when I click on the send button, I get an error message saying : “Message was not sent. Client error or Internet connection problems.”

Kind regards

Hello and thank you for purchasing Bonno.

Could you please send a link to your demo website here or using contact form on our profile page? http://themeforest.net/user/Aisconverse

Most common mistake with contact form, the wrong path to email.php file http://bonno.aisconverse.com/php/email.php, please check it in custom.js file http://bonno.aisconverse.com/js/custom.js line 298

Regards,

Finally it’s good, everything works. I hosted the template in a subfolder of my server. When I put the template to the server’s root, the form works fine. But it doesn’t work in a subfolder.

Regards,

Hello, If you use subfolder for template, please write a path to email.php file with subfolder name, for example ”/subfolder/php/email.php”

Hi! I have bought this theme about a month ago, and I am really satisfied with it, but this past week, I started having some complains about chrome users, because google was detecting a suspicious script on my blog… The script that chrome is complaining about is the one from ‘frohebabys.de’, so I looked for it on the source code and I found it on the ‘header.php’ file.

I have removed it, and now google considers my blog safe again… Though everything seams to work just fine now, I am still a bit concerned because I don’t get why you have included this script, since I get no info about it after some research on the internet.

Hope you could clarify me, what is this about, and also, if it is something important in order to have all the features from your theme.

Cheers!

PS – Just found that this thread is for the HTML Template. I bought the WP Theme, sorry for the mess. Waiting for your response.

Hi,

Naturally we didn’t add this third-party link to our theme. It often happens with WordPress sites and badly secured hostings when it-crimes get an access to you file system and change site scripts this way.

You should make an effort to make you site more secured. Install this plugin https://wordpress.org/plugins/better-wp-security/ and proceed all steps it offers. This plugin is really industrial standars of WordPress security and it will make your life easier.

Kind regards, Aisconverse team

Hi, is exists “email.php” file in the theme package ?

Hello. Yes, email.php file included in template package. Thanks for interest.

2 weeks ago i payed it 48$ Dollars and the Theme is full of bugs!!!! Now it cost only 16$???? . it’s not professional.

Hi,

$48 – WordPress Theme | $16 – HTML template

Make the difference, please.

Regards, Aisconverse team

Hi, does this theme support a child theme or come with one ready to use?

Cheers Mark

Hi Mark,

Thank you for your interest. The current page is a HTML-template theme. If you want to buy WordPress theme follow this link please.

Bonno WP theme supports child themes and comes with one ready to use. Using child theme is a guarantee to save your changes on parent theme updates.

Thanks! Aisconverse team

Yeah sorry wrong page – the WP theme is what I’m talking about. Thanks for your reply. Cheers!

I’m having trouble getting the contact form to work.Can you please take a look for me. The link to my page is http://www.jasonsalamone.com/appleice/contacts.html and here is the code for my PHP

<?php define(‘EMAIL_ADMIN_SENT_TO’, ‘graphicwizz@yahoo.com‘); define(‘EMAIL_ADMIN_SUBJECT’, ‘Feedback from AppleIce.com’); define(‘EMAIL_CLIENT_SUBJECT’, ‘Feedback from AppleIce.com’);

$headers = “MIME-Version: 1.0\r\n”; $headers .= “Content-Type: text/html; charset=UTF-8\r\n”; $headers .= “From: graphicwizz@yahoo.com\r\n”; $headers .= “X-Mailer: PHP/” . phpversion() . ”\r\n”;

$errors = array(); $name = strip_tags(trim(!empty($_POST[‘name’]) ? $_POST[‘name’] : ’’)); $email = strip_tags(trim(!empty($_POST[‘email’]) ? $_POST[‘email’] : ’’)); $message = nl2br(strip_tags(trim(!empty($_POST[‘message’]) ? $_POST[‘message’] : ’’)));

if (empty($name)) { $errors[] = ‘name’; }

if (empty($email) || !filter_var($email, FILTER_VALIDATE_EMAIL)) { $errors[] = ‘email’; }

if (empty($message)) { $errors[] = ‘message’; }

$response = array(‘status’ => ‘ok’);

$datetime = date(‘Y-m-d H:i:s’);

$letterToAdmin = <<<MSG

Feedback form
Author: {$name} {$email}
Message:
{$message}

Email was sent at {$datetime}

MSG;

$letterToClient = <<<MSG

Hi, {$name}! 
You was sent message to administrators Bonno at {$datetime}.

Wait answer in few days. We will send our reply on {$email}
Your message: 
{$message} 

Thank you for your letter!

MSG;

if (empty($errors)) { mail(EMAIL_ADMIN_SENT_TO, EMAIL_ADMIN_SUBJECT, $letterToAdmin, $headers); mail($email, EMAIL_CLIENT_SUBJECT, $letterToClient, $headers); } else { $response = array(‘status’ => ‘error’, ‘errors’ => $errors); }

die(json_encode($response));

Thanks!

Ok, I’ll look into it. could it be the version of PHP running on my server?

I got it resolved. It had to do with the From Address. thanks for all the help with this!

No problem, Jason) Please contact us with any questions.

I am not having any luck with getting the map to work. I went to http://itouchmap.com/latlong.html and typed in my address:

171 East Industry Court Deer Park, NY 11729

and it gave me the results of 40.765982,-73.296201

I changed this in my custom.js file and set the zoom to 14 but it still pulls up a blank space on my page. Here is the test link. http://www.jasonsalamone.com/appleice/contacts.html Please help. Thank you

Hello and thank you for purchasing.

Please, paste google map script at the end of the contact.html page

<script src=”https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false”> </script>

Regards,

Hi There,

I’m trying to build a grid like your home screen, just for images. What I want to happen is that the thumbs open with your lightbox script. Do you have some advice how to combine the grid with the image functions of your ‘about’ page?

Thnx CR

Hello and thank you for purchasing!

As we understood, you should add class popupslider to parent block, and then use structure like this:

<!-- section: PORTFOLIO --> <div class="section portfolio popupslider"> <ul> <li class="work"> <img src="images/works/work-1.jpg" alt="" /> <div class="mask"> <a href="images/about/about-3.jpg">Drops Branding</a> </div> </li> </ul></div>

A href = url to big image, and at last, customize marked list and paddings. It’s the simplest way, because, by default, you can not use it.

Hope it help you.

Regards,

Hello, I purchased your template and love it. On the About Us page where you have the 3 images showing that rotate, can I make that a row of 6 or 9 photos instead of just three showing at a time? Thanks!

Hello,

Thank you for purchasing and kind words.

Sorry, but there is no easy way to do it in current template version, but if you have a good skills in html and javascript you can find useful info here http://docs.dev7studios.com/caroufredsel-old/examples/responsive-carousels.php

Regards,

HI! One more question. Can You please tell me, after opening page, first I see loader.gif, then I see page title (ex. Welcome to company), then comes menu, and after that loads content. I added script, it shows infobar. All works fine, but this bar loads together with page title, it looks not good. How can I make this bar coming with menu or better with content?

Sorry, I did not get answer on my last email about second question.

I can not find in bonno code plugin that starts menu on mobile devices by clicking a button. Is it possible and can You pls help me to add a new one menu (not responsive, only one button), that will work separate (or if possible together) to existing main menu, but will look the same. I sent screenshot…

Continued in email

Hello, Waldelmar

We resolved your issues and reply by e-mail.

Thank you!

Wow! Excellent and fast support!

Awsome final work! All what was needed was made very fast! All questions are answered and resolved by author! Wish You to get new lucky customers!

Highly recommended this autor items!

Hi! Can You please check your mailbox! I have sent You a message. Thank You!

Hello and thank you for message. We have got it and will inform you about results on Monday. Please, stay in touch

Beautiful template,

One question, where can I change the google maps code? Can’t find it.

Hello. Thank you for purchasing.

To set Google maps you need to edit the js/custom.js file. To get the longitude and latitude you can use the following service http://itouchmap.com/latlong.html 7 : zoom : 14, 8 : locations: [54.690669, 25.268196]

Hi! Very clean template! I am very glad to buy this one! :) But I have a question, here is screenshot http://s13.postimg.org/n98gvpf9j/screenshot.png

Hello and thank you for purchasing. You need to change 12-column structure, line 19 and line 22 in html files.

for logo <div class="col span_2_of_12"> <a href="index.html" class="logo">Bonno</a> </div> for menu <nav class="col span_10_of_12 aligned right"> <ul class="mainmenu"> </ul>

Here you can see 2 cols for logo and 10 cols for menu.

But, if you change amount cols for menu, you have to change custom.js file for adaptive menu: 171 line: instance.mainmenu.slicknav({ label: ’’, prependTo: ’.header .span_8_of_12’ });

Try it and experiment some different ways to find optimal issue for you.

Thanks

Thanx for your reply… I’ll try

Thank You for telling me about custom.js

Greetings, excellent template. I’m trying to figure out how to change the Bonno word on the top left hand corner to a logo. Tried dragging the logo into it (I’m not much of a code person) in Dreamweaver but it turned out pretty small. Any way to resize it?

Thanks!

Hello. Thank you for purchasing.

Please, edit style.css file (line 222) after class logo was removed.

From .header{ margin-bottom: 59px; padding: 59px 28px 0; position: relative; z-index: 9; opacity: 0; }

To .header{ margin-bottom: 59px; padding: 59px 28px 0; position: relative; z-index: 9; opacity: 0; line-height: 48px;}

And set the line-height.

Hope it help you. Tanks.

Hello and thanks for your reply. I did all that you said and was able to move the navigation menu around by adjusting the line height as instructed which is really great.

However, i am unable to make it aligned next to the logo as the navigation menu refuses to budge after a certain line height is set which is near the logo image. It will only comply with the line height when it is being moved away from the logo image so i still have the problem. :(

Please, try this way. Remove line-height for mainmenu > li, left col and right col will have the same vertical alignment

Hi there! How can I center logo? I added an image as a logo and I want to center it. I dont use nav-menu so I deleted it. Thanks and nice template! ;)

Hello, Thank you for purchasing. Please use code like this for it <header class="header section"> <div class="col span_12_of_12 aligned center"> <a class="logo" href="index.html">LOGO</a> </div> </header>

Hello, just purchased the files. Great clean work! Have faced now one small problem – at the blogRoll.html the second row is not in straight line. “Stop Wasting Time” and “Rethinking Mobile Tutorials” are both disordered. Have checked it on 2 Mac’s with 4 different browsers (Safari, Opera, Firefox and Chrome). Thanks in advance! Regards

Hello. Thank you for purchasing. Sorry, but it’s not a problem, this is a design idea. Blocks are aligned relative to the upper block. You can see it in the third row by clicking on the Load More button.

Thanks!

hello, i want to purchase this template, but i want to know how can i manage to edite blog pages. I am not very well versed in programming

regards

Hello. Thank you for interest. Bonno has a two page template for blog. http://bonno.aisconverse.com/blogRoll.html – list of posts and http://bonno.aisconverse.com/blogPost.html – single post page. So you can copy blogPost.html file and create a new page for each post. Please, note that Bonno is just HTML template, it’s not a full-featured blog system like a WorPpress.

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