102 comments found.
Hello, When I clicked image on my woks, popup displayed “The Content cannot be loaded.”. What is the wrong? Please help me..
Thank you..
Hello, When I clicked image on my woks, popup displayed “The Content cannot be loaded.”. What is the wrong? Please help me..
Thank you..
Hello, “The Content cannot be loaded.” only show when the specific page are not exist or not readable. Please assure your single work page path are ok.
I ‘m not changed anything. The image linked to “project-single.html” page in project folder. Page link given as ”#!projects/project-single.html”
Is there something wrong?
Nope,seems it should work. Can you upload the works on server and send me your url, so i can check. Thanks
Hi, I bought this theme and today I want update my site and I just download your last update,please tell me how I should upgrade my site?
Thanks for your kindness.
Hello,
If you already made your site by previous downloaded file, then you have to follow the step for image slider version.
There only changes image slider style and updated all jquery, bootstrap and fontawesome plugins.
If you want to modify the slider part then:
- Upload ‘rs-plugin’ folder on your server where your index.html file.
- Now please open your index.html file. You have to follow 3 step to make it. STEP 1: call CSS style for rev slider. Add<!-- SLIDER REVOLUTION 4.x CSS SETTINGS --> <link rel="stylesheet" type="text/css" href="rs-plugin/css/settings.css" media="screen" />before </head> tag close.
STEP 2: Replace header slider code by new code.
- Find below code and replace with the new one. You can get the code from new index.html file.<!-- Home Section --> ... ... <!-- Home Section -->STEP 3: add js files for rev slider.
<!-- SLIDER REVOLUTION 4.x SCRIPTS --> <script type="text/javascript" src="rs-plugin/js/jquery.themepunch.tools.min.js"></script> <script type="text/javascript" src="rs-plugin/js/jquery.themepunch.revolution.min.js"></script>Add those line before:
<script type="text/javascript" src="js/script.js"></script>
DONE.
For BOOTSTRAP update, you have to replace js/bootstrap.min.js file and css/bootstrap.min.css file by new one.
For FONTAWESOME update, you have to replace ‘fonts’ folder by new one and then replace css/font-awesome.min.css file by new one.
Also need to replace js/jquery.min.js by new one.
Hope it will works. If you still have any problem, then let us know about it.
Kind Regards
What was included in the update?
Updated files contain latest jquery.min.js, bootstrap, font awesome and other plugins. Also added revolution slider for image slider version.
Hello. Contact form is not working for me. I fiil up all the fields and when hit submit it says: Error sending Try again later. I fill sendemail.php as you describe in documentation but still not working Thanks best regards
Still not working but in your demo contact form works. ????
Demo site email works. I got every testing email from there. You can check your hosting server support php mail function or not.
Hello. I Made it work. I only have to use smtp. Now it’s fixed. Thanks. By the way in index.html there’s a div for antispam code. Can I put there recaptcha? I guess so. Thanks. Best Regards
Glad to know you fixed the issue. Here i have used antispam field for reduce robot spam mail. If you need to install recaptcha, then you can. But i think the antispam field work nicely. Regards
Hello. Thanks. In the antispam div it says:
<!- antispam code ->
<input type=”text” value=”” name=”url” />
But nothing shows in the form as antispam area. what should I put there? Thanks Best Regards
No need to put anything there. This is a hidden field. Human can’t enter any value there, but a script or robot will enter the field. This is the technique to avoid spam or robot mail. Hope you understand now. Regards
Hello. Got it Thank so much Regards
Hello, since this theme is a one-page, I guess there is no reload. Then, is it possible to put a HTML5 audio player in the upper navigation bar, and the music keeps on playing when we navigate from a page to another one ? Can it easily be inserted in the HTML sourcecode of the navbar ? Thank you. (example here : http://amazingaudioplayer.com/ )
Hello, Yea, you can easily add this html5 audio player on header. If you face any further problem while integration, let me know. Thanks
Great template I must say, I am having some issues with how Safari is reading the skills section, Is there anything I can do to make sure the text of the percentage charts does not overlap with the skills bar?
Please take a look at justinknoll.co
.chart {
display: inline-block;
height: 150px;
margin-bottom: 50px;
margin-top: 50px;
position: relative;
text-align: center;
width: 150px;
}
Then replace it to
.chart {
display: inline-block;
height: auto;
margin-top: 50px;
position: relative;
text-align: center;
width: 150px;
}
Hopefully the issue will be fix after that.
Fixed, thank you for your assistance and building a great product!
Hello. Nice theme. But having a problem with email contact form.
When a user fills out the form and hits Submit, it fails. The page shows only this response:
"; } else { echo "
And then it says fails, and then the form goes back to normal. Looks like a bug. Help please?
Hello, This problem you are seeing because you are trying to run php script on your desktop. You have to upload that script on server or any local server to run the php script. You can try it with your hosting server. it should be run. Thanks
I’m sorry, I really don’t understand what you mean. I have the site running on a virtual machine with Ubuntu Server. I have apache2 and PHP installed.
Do I need to have sendmail fully configured and working? Or do I un-comment the SMTP configuration on lines 44-50 in sendemail.php?
If the php mail server is configured then it should work without any modification. If you want to enable SMTP server then you can configure on lines 44-50 in sendemail.php. But the script should work on apache server. Maybe any error or any header called before mail send code. Not sure what wrong there without seeing the site.
I configured sendmail to use gmail, and was able to test it using:
echo a | mail -s “test email” my@email.com
And it worked.
But I’m still getting the error. The page dumps a lot of code, like this:
"; } } else { echo 'All Fields are required'; } return; } /** * email function * * @return bool | void **/ function email($to, $from_mail, $from_name, $subject, $message){ require 'PHPMailer/PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->From = $from_mail; $mail->FromName = $from_name; $mail->addAddress($to, 'Identity'); // Add a recipient $mail->addCC(''); //Optional ; Use for CC $mail->addBCC('');//Optional ; Use for BCC $mail->WordWrap = 50; // Set word wrap to 50 characters $mail->isHTML(true); // Set email format to HTML //Remove below comment out code for SMTP stuff, otherwise don't touch this code. /* $mail->isSMTP(); $mail->Host = "smtp.googlemail.com"; //Set the hostname of the mail server $mail->Port = 465; //Set the SMTP port number - likely to be 25, 465 or 587 $mail->SMTPAuth = true; //Whether to use SMTP authentication $mail->Username = "me@email.com"; //Username to use for SMTP authentication $mail->Password = "password"; //Password to use for SMTP authentication */ $mail->Subject = $subject; $mail->Body = $message; if($mail->send())return true; } ?>
I have the smtp portion of sendemail.php commented out assuming it would simply use the local sendmail on the server. But it’s still not working. I have screenshot and I can give you a link to the server.
I was able to solve it. Seems that I was missing some dependent php libraries. I uninstalled and reinstalled php5. It downloaded dependent libraries, and the email started working.
Thanks!
Great 
How do I stop the automatic scrolling of full page portfolio sliders? Or change the time at least.
Thanks
full page portfolio slider or fullscreen slider of header?
Full page portfolio slider
setTimeout(function () {
$(".slider_container").flexslider({
directionNav: true,
controlNav: false
});
Then replace it by
setTimeout(function () {
$(".slider_container").flexslider({
directionNav: true,
controlNav: false,
slideshow: false
});
I have added here only “slideshow: false”.
Thanks
Is the ad I am seeing in the video version from the Youtube video itself? Or do you have an pop up ad in the code that I can not find to remove?
No popup ad are there. You can try it with other browser. Maybe it happens for any addon install to your browser.
Hi Themelab, is that wordpress version is still planned? if so when? Thank you.
Hello, We are already done the identity multipurpose WP theme. After release that one, we will make vcard also. Both are almost same.. so that will come soon. Thanks
WP version available now. Please check the link: http://www.themeforest.net/item/identity-personal-vcard-cv-portfolio-wp-theme/9611418?WT?ref=thethemelab
Hi there, I installed lightbox jquery image scroller, but when I apply it to one of the portfolio items on the main page, it will not open. It simply adds the image URL to the end of my websites URL and doesn’t load anything.
Is there any way to change this for just images?
Hello, If you want to remove the style of fullscreen portfolio and add lightbox effect for portfolio images, then you need to remove or comment out below line from js/script.js fie:
if ($portfolioItems.length) {
portfolioInit();
}
Then try lightbox. Thanks
Thank you!
Hi, Nice theme!
But I’m having a problem. I created new projects using the project-single.html template. I call them: project-wine.html project-cat.html project-beach.html
And so on.
I have 9 projects. When I click on a thumb it opens the correct project and it navigates well until I reach the last project. But when I click on the arrow on the last project it gives me : #undefined
If you copy for example the project-single.html and give for example the name project-test.html and if you insert another <article> with the new project:
You will see this error.
hello, i got the issue. I will update it soon and fix this issue. Thanks
Hello, Is there some other setting that needs to be changed to add a new slide to the front page?
<section id="SECTIONNAME" class="section-content"> <div class="container"> <div class="row"> ... ... </div> </div> </section>
Thanks for the reply. New slide, not new section
<!- Slider image 3->
<!- End Slider image 3->
I added that after the second slide. And its not showing up www.adamwolfson.com
I saw you did a mistake there. Added the slider image after closing the main slider div. So your image are not showing on that fullscreen slider. Please add below code or correct your HTML code:
<div id="fullscreen-slider">
<!-- Slider image 1-->
<div class="slider-item">
<img src="images/slide1.jpg" alt="" />
</div>
<!-- End Slider image 1-->
<!-- Slider image 2-->
<div class="slider-item">
<img src="images/slide2.jpg" alt="" />
</div>
<!-- End Slider image 2-->
<!-- Slider image 3-->
<div class="slider-item">
<img src="images/slide3.jpg" alt="" />
</div>
<!-- End Slider image 3-->
<!-- Slider image 4-->
<div class="slider-item">
<img src="images/slide4.jpg" alt="" />
</div>
<!-- End Slider image 42-->
</div>
Thanks, I was wondering if there was anything that may need to change on the server side in order to get the mail script to work? I change the email already.
If your server support phpmail, then no need to change anything on server side.
Hi,
Any reason why your placeholder images in the My Works section are so large? Looks like mine go to 278×163 max
hello, you can use small images there. I used 2x size image for better view on large resolution display. Thanks
Hi,
Noticed that you have a jquery file added titled Parallax. I’d like to apply some parallax design to the main banner image – how can i do this?
Thanks
Hello,
Yes, on js file, you can add that id of that parallax section which one you want to add like:
$('#sectionID').parallax("50%", 0.3);
This script should be add on that function.
And for HTML parallax section you have to add a section like<section id="sectionID" class="clients parallax" style="background-image: url(images/parallaxImage.png)"> .... ....
Hope you can manage new parallax section like this way.
Thanks
Hey,
very nice design. Both live demos do not work for me in safari. I can not scroll and nothing happens when i click the links in the top menu. Is this a known issue and will you fix it?
Best, Lukas
SafariVersion 7.0.5 (9537.77.4)
Hello, this is not known issue. No one complain about it. Maybe it happens for any addons you are using your browser. I’m not sure about it but I will check it. Thanks
I have noticed when scrolling using the trackpad on my laptop, the website stutters and begins to shake back and forth until finally landing on a section. This does not happen when using the nav bar, only when manually scrolling.
can you send your site url through my profile contact form. I will review it. Thanks
Okay I sent you a message
Any updates on this?
Seems to be the worst on Safari
Hi I really like your theme.
Excuse my ignorance but is this a static website template? I’m trying to to host a website on Github pages. Many thanks,
Rob
Hello, This is a HTML template. Thanks
I’ll take that as a yes.
Thanks very much.
Why when you click “web” under my works does it filter not evenly? There is a gap between two of the entries?
http://i.imgur.com/RUQstj3.png