79 comments found.
Hi – I can’t install the theme. Even with SFTP upload it says missing style sheet.
Please advise.
Thanks
Please? This is pretty urgent. I have a client needing a site up quickly and I would love to use this theme I paid for. I have tried installing through WP and uploading through SFTP. I still get the message that it’s missing style sheet. Thanks.
hello happy new year
I need help with the template customization. i buy template identity
Hello Sir,
Your ID didn’t purchase my theme. I will definitely help to customize that template after purchase.
Thanks
I did buy the template from you and I received the payment confirmation email which allowed me to download the template. give me an email so that I can send you the confirmation email.
ths is the mail:
Hi tickerdu22, Thanks for buying with us. Below is a summary of your recent purchase. You can download your purchased item at your Downloads page and view your invoice(s) on your statement here
this my visa card notification:
Cher client, Alerte de carte 8247 Date 27-01-2021 03:39 POS Dr XOF 33.955 Solde XOF 162.866 Note: ENVATO *56757737 SALT LAKE CIT US
my email is tickerdu22@yahoo.fr
You are right. It not you. I will buy yours now
Hi
When you open the image, you send me an error “The Content cannot be loaded.”
What I can do?
Thanks
Is there any way you can add an extra ‘sub’ item link on the ‘blog’ drop down menu? There is currently 1 ‘level’ of drop-down and would like to know if you could add another one?.
I am basically needing a sub-level menu from the blog page, sub blog page, shortcode and 404 pages so that those each have a drop-down on them as well.
Thanks!
Hi there,
I’d like to change the ‘spacing’ to accommodate more text in the ‘PROCESS’ section but can’t seem to find code to change it.
Please go have a look at http://www.leechie.co.za/saville/history.html to see how I’m wanting to use it as a ‘timeline’ but need to accommodate more text between the icons.
Many thanks! Michelle
Hello,
Thanks for contact us here.
I have checked out the site. Actually, the Process part is designed for fixed length text. But you are trying to add too more text there.
If you want to do that, then you have to change few more css and customize it. Also need to change java script for it. It is little difficult to accomplish.
Regards
Hi I want to add a sub menu link hoiw can I do this?
Like :
- News – News 1 – News 2 - Contact Us - Etc Etc
Can you help me?
Youtube video is not playing in mobiles.
Mobile is not supported background autoplay video without touching. So instead of video, we use background image there for mobile.
Hi, could you please give me a fix for team section? Having narrow screen (e.g. iPad) the members photo is not resized and it is cropped instead. At the same time social icons occupy 2 rows and skill doesn’t show up properly. Same issue is in your theme preview. Thank you. Martin
Hi, I by tour theme, but when I try to install it, i can,t, becouse wordpress say: no style.css file. Can you help me?
Hello there! I’d like to know how to set the ‘Team’ section in 3 members and get them centered, they’re left. I know it is a costumization but I’d be very grateful if you could help me. Thanks!
Hello,
You can make it by changing div with css structure. Follow the below code and try it.
<div class="col-md-10 col-md-offset-1">
<div class="col-md-4 col-xs-12">
<!-- member 1 -->
....
</div>
<div class="col-md-4 col-xs-12">
<!-- member 2 -->
.....
</div>
<div class="col-md-4 col-xs-12">
<!-- member 3 -->
.....
</div>
</div>
Regards
Worked fine!! Thank you!!
Hi i have problem whit sending email can you help me ?
Code html :
<form method=”post” name=”contactform” id=”contactform” class=”form validate item_bottom” role=”form”> <input type=”text” name=”name” id=”name” class=”form-control required” placeholder=”Name”> <input type=”email” name=”email” id=”email” class=”form-control required email” placeholder=”Email”> <input type=”text” name=”phone” id=”phone” class=”form-control” placeholder=”Phone”> <textarea name=”message” id=”message” class=”form-control input-lg required” rows=”9” placeholder=”Enter Message”></textarea> <input type=”submit” class=”btn btn-trans btn-border btn-full” id=”contactForm_submit” formaction=”sendemail.php” value=”Submit”> <!- request sent using HTTP_X_REQUESTED_WITH
if( isset( $_SERVER[‘HTTP_X_REQUESTED_WITH’] ) AND ($_POST[‘url’]==’http://www.eidentity.sk/sendemail.php')){
if (isset($_POST[‘name’]) AND isset($_POST[‘email’]) AND isset($_POST[‘message’])) {
$to = ‘eidentity@eidentity.sk’; // Change it by your email address
$subject=’Contact from Identity’;
$name = filter_var($_POST[‘name’], FILTER_SANITIZE_STRING);
$email = filter_var($_POST[‘email’], FILTER_SANITIZE_EMAIL);
$message=’’;
$phone = $_POST[‘phone’];
if(!empty($phone)){
$message=’Phone: ’.$phone.’
’; } $message .= filter_var($_POST[‘message’], FILTER_SANITIZE_STRING); }
$sent = email($to, $email, $name, $subject, $message);
if ($sent) {
echo " Email Sent Successfully
Your message has been submitted.
";
} else {
echo " Error sending
Try again later.
";
}
}
else {
echo 'All Fields are required';
}
return;
/* * email function * * @return bool | void */ function email($to, $from_mail, $from_name, $subject, $message){ require ‘PHPMailerAutoload.php’;
$mail = new PHPMailer; $mail->From = $from_mail; $mail->FromName = $from_name; $mail->addAddress(‘eidnetity@eidentity.sk‘); // 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
$mail->isSMTP(); $mail->Host = “smtp.eidentity.sk”; //Set the hostname of the mail server $mail->Port = 456; //Set the SMTP port number – likely to be 25, 465 or 587 $mail->SMTPAuth = true; //Whether to use SMTP authentication $mail->Username = “eidentity@eidentity.sk”; //Username to use for SMTP authentication $mail->Password = “DH900203”; //Password to use for SMTP authentication
$mail->Subject = $subject; $mail->Body = $message; if($mail->send())return true;
} ?>
Hi i have problem whit sending email can you help me ?
Code html :
<form method=”post” name=”contactform” id=”contactform” class=”form validate item_bottom” role=”form”> <input type=”text” name=”name” id=”name” class=”form-control required” placeholder=”Name”> <input type=”email” name=”email” id=”email” class=”form-control required email” placeholder=”Email”> <input type=”text” name=”phone” id=”phone” class=”form-control” placeholder=”Phone”> <textarea name=”message” id=”message” class=”form-control input-lg required” rows=”9” placeholder=”Enter Message”></textarea> <input type=”submit” class=”btn btn-trans btn-border btn-full” id=”contactForm_submit” formaction=”sendemail.php” value=”Submit”> <!- request sent using HTTP_X_REQUESTED_WITH
if( isset( $_SERVER[‘HTTP_X_REQUESTED_WITH’] ) AND ($_POST[‘url’]==’http://www.eidentity.sk/sendemail.php')){
if (isset($_POST[‘name’]) AND isset($_POST[‘email’]) AND isset($_POST[‘message’])) {
$to = ‘eidentity@eidentity.sk’; // Change it by your email address
$subject=’Contact from Identity’;
$name = filter_var($_POST[‘name’], FILTER_SANITIZE_STRING);
$email = filter_var($_POST[‘email’], FILTER_SANITIZE_EMAIL);
$message=’’;
$phone = $_POST[‘phone’];
if(!empty($phone)){
$message=’Phone: ’.$phone.’
’; } $message .= filter_var($_POST[‘message’], FILTER_SANITIZE_STRING); }
$sent = email($to, $email, $name, $subject, $message);
if ($sent) {
echo " Email Sent Successfully
Your message has been submitted.
";
} else {
echo " Error sending
Try again later.
";
}
}
else {
echo 'All Fields are required';
}
return;
/* * email function * * @return bool | void */ function email($to, $from_mail, $from_name, $subject, $message){ require ‘PHPMailerAutoload.php’;
$mail = new PHPMailer; $mail->From = $from_mail; $mail->FromName = $from_name; $mail->addAddress(‘eidnetity@eidentity.sk‘); // 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
$mail->isSMTP(); $mail->Host = “smtp.eidentity.sk”; //Set the hostname of the mail server $mail->Port = 456; //Set the SMTP port number – likely to be 25, 465 or 587 $mail->SMTPAuth = true; //Whether to use SMTP authentication $mail->Username = “eidentity@eidentity.sk”; //Username to use for SMTP authentication $mail->Password = “DH900203”; //Password to use for SMTP authentication
$mail->Subject = $subject; $mail->Body = $message; if($mail->send())return true;
} ?>
Hello, I’ve purchased this bootstrap theme. However, recently my lightboxes no longer seem to work properly. Are there some updated scripts, or something for compatibility with newer browsers? Please let me know at your earliest convenience…
This doesn’t seem to change the mobile background image for a video version of the site to another images.
.video-section { background: url(’../images/slide1.jpg’) no-repeat bottom center; }
any way to replay the video automatically? How about stopping at a set time and then replay again in a loop?
How can I replace the main text on the home slider for a logo?
hello i have a lote of many questions are you can help me
Hello, I’d like to get the last version.
You already downloaded the last version. If you need any more update, let us know.
Hi! First of all, congratulations for the theme! I’m just having a problem: When I change the youtube url the video doesn’t show up… Why? The video on youtube works…
Hello, can you send me your site url, so i can review it.
Where can I adjust the stopping point where you scroll down and the menu turns black?
Hello,
You can get the script under js/script.js file. Find
// Minify the Nav Bar
Under this line, you get that code.
Regards