107 comments found.
I triyng dowload cargo hub template inside AWS but is having several problem. Please provide me information.
Hi,
Sorry we not understand your issue. Why u downloading inside AWS? Please send your detailed issues to our mail iamsteelthemes@gmail.com.
Thanks
Hi,
Where u read about shutting down?
On Mobile Nav in HTML Template: In Sub Menu there is a a link namen “undefined”. How can i change this?
plz i need the all the images in the template i purchased
Hi,
Please give your mail id.
Thanks
The homepage slider text is not appearing on mobile…
Hi,
Its hidden. We will help you after purchase.
Thanks
great template.. one question.. how to fix dinamic information for MenuSwitcher on top Menu.. when i clicked on other “London Office” or “Tokyo Office” , text (phone, email, location) disappears
Hi,
We will updated the package today.
Thanks
Hi,
Great template, however on downloading the template none of the stock images are available. Can these be forwarded or downloaded from another location ?
Hi,
Please give your mail id. We will send you
Thanks
deleted
Hi, im still waiting for the stock images to be emailed to me !!
Hi,
Sorry for the Delay. We sent you mail
Thanks
Gostaria de saber se o template Cargo HUB – Logistics HTML não possuí um admin ?
Hello,
Sorry not understand. Please explain clearly.
Thanks
Great theme! Quick question, it seems that on index.html on mobile the text does not appear on the slider 1, 2 or 3? How do I make the overlay text appear on the sliders when viewed on mobile?
Hi, The contact form is connected to email, but the contents of the respective fields are not being passed. Also, how to connect the get a quote page – have you included a php file for it, because i couldn’t find it ?
Hi,
Please try to change all as per given instruction.
1. Find line number 4 in mail.php and change your theme location like ( $url = ‘http://servermaintain.com/contact/' )
to ( $url = ‘your folder location’ ) 2.Find line number 11 in mail.php and change mail id like (graphicrajkumar@gmail.com) to (youmail@gmail.com).
3.Find line number 22 in mail.php and change mail id of which server you are using like (info@servermaintain.com) to (info@yourdomain.com).
If you want any extra function you can get help from amy PHP developer.
Thanks
Thank you, but i managed this with a different PHP code, great theme and good work 
In the mobile menu, instead of “back” text for link back to main menu from submenu – the text is “undefined” and i couldn’t find where in the code to edit that. The website is parcelsolution.co.in/paused
Kindly assist
Hi, please need help with this
Hi,
first open css folder and then open style.css and place the given css at the last line of this page.
.menu-back::before { color: red; cursor: pointer; } .menu-back { color: #fff; }
Thanks.
Thank you very much!
How do i reduce height of the revolution slider ?
Hi,
first open js folder and then open script.js and go to line number 41 and change gridheight like given below.
gridheight:[850,768,960,720]— before change
gridheight:[600,768,960,720]— after change
Thanks
thank you, please help me with my other queries too 
Hi, Can you please give me a list which tell me what css and js must loaded globally.
Hi,
You can see all list of css and js to the links given below.
https://www.tutorialrepublic.com/javascript-tutorial/ https://www.tutorialrepublic.com/css-reference/css3-properties.phpThanks
Hello, the anchor link does not work for me.Why? Look this link: https://box.carbonx.it/pizetaexpress.it/it/azienda#ambiente
Could you help me setting contact page for mail? i try all way for contact page- but its not work i set some thing but i get only mail subject, i dont see meal message only subject
Hi,
You want to setup contact form according to your need but i can’t help you to change contact form. If you get any issue in existing html template then you will get support. This is a HTML template not a wordpress template if you want all those features within one shed you should buy wordpress template.
Thanks for your rating.
How I can add RTL support to this template ? Can you add it by add cost ?
Hi,
dir=’rtl’ will effect whole design. Because after set rtl padding and margin and and images, icons need to be set accordingly.
it will take much more time than expected.I don’t think client will pay as much time taken by it
Thanks
Hello. I need assistant regarding contact form and request a quote section. how can I set up my email address to receive emails and messages from the website if someone wants to contact me?
Thanks for your support. I will try it out but now i have new problem. i have uploaded website data to public_html. but whenever i want to visit the site it fails with error “This site cannot be reached”. with ERR_CONNECTION_REFUSED error. Kindly help me out.
Site error was due to Launchpad verification. which has already been solved. and following your instruction contact form also work but now request a quote gives 404 error.
Hi,
“Site error was due to Launchpad verification. which has already been solved. and following your instruction contact form also work but now request a quote gives 404 error.”=> Either mail.php file not found in your server or mail.php file has not proper read permission like 644 in linux server
Thanks
mail.php is in Ajax folder. and I have configured it as per your instructions.I have not changed the location of mail.php. Do I have put it somewhere else? please follow the link for screenshot http://prntscr.com/m3zf2b
mail.php is in the default folder i.e ajax. do i have to put it somewhere else. please see screenshot http://prntscr.com/m3zf2b
Hi,
As I have seen you have not using phpmailer only mail function is using in the mail.php file. You should use the given code but phpmailer folder should be in same path and put the file within the ajax folder near the mail.php file.
<?php require_once ‘phpmailer/PHPMailerAutoload.php’;
//Create a new PHPMailer instance $mail = new PHPMailer; //Tell PHPMailer to use SMTP $mail->isSMTP(); //Enable SMTP debugging // 0 = off (for production use) // 1 = client messages // 2 = client and server messages $mail->SMTPDebug = 2; //Ask for HTML-friendly debug output $mail->Debugoutput = ‘html’; //Set the hostname of the mail server $mail->Host = “smtp.gmail.com”; //Set the SMTP port number – likely to be 25, 465 or 587 //allow less seucre app from https://www.google.com/settings/security/lesssecureapps $mail->Port = 465; //Set the encryption system to use – ssl (deprecated) or tls $mail->SMTPSecure = ‘ssl’; //Whether to use SMTP authentication $mail->SMTPAuth = true; //Username to use for SMTP authentication $mail->Username = “smtpuser@domain.com”; //Password to use for SMTP authentication $mail->Password = “your smptpuser@domain.com email password”; //Set who the message is to be sent from $mail->setFrom(‘smtpuser@domain.com’, ‘Sent from Username’);
//Set who the message is to be sent to $mail->addAddress(‘whomtosendemailaddress’, ‘whomtosendname’);
//Set the subject line $mail->Subject = “test”; //Read an HTML message body from an external file, convert referenced images to embedded, //convert HTML into a basic plain-text alternative body $mail->msgHTML(“This is test”); //Replace the plain text body with one created manually /* $mail->AltBody = ‘This is a plain-text message body’; //Attach an image file $mail->addAttachment(‘images/phpmailer_mini.png’); */
//send the message, check for errors if (!$mail->send()) { echo “Mailer Error: ” . $mail->ErrorInfo; } else { echo ‘mail sent’; }
Plese check error_log in ajax folder for any php error of mail.php file.
Thanks
Hello Could you test your theme service.html page for on mobile. If we look services.html page that time we see some wrong.There is space on the right side. There is an error in the head up menu.
Hi,
I did not find such type of error or gap.Please send me screenshot.
Hi. I chaged number line 4,11 and 22 in mail.php Yes contact massage is wark. But it is not work true. Beacuse when i send any message from contact page that time i get only header message. Not i get comment and telephon number and name.
Hi,
I Think you didnot use PHPmailer in your server.PHP mailer needs for html contact form in row server.
Thanks
Hi. I chaged number line 4,11 and 22 in mail.php Yes contact massage is wark. But it is not work true. Beacuse when i send any message from contact page that time i get only header message. Not i get comment and telephon number and name.
Hi,
I Think you didnot use PHPmailer in your server.PHP mailer needs for html contact form in row server.
Thanks
i tested phpmailer in my hosting with this code
<?php ini_set( ‘display_errors’, 1 ); ?> it is work this code not any problem but you php file ant template is not work true
error_reporting( E_ALL );
$from = "sahin@mydomain.com";
$to = "info@mydomain.com";
$subject = "My PHP mail subject is here";
$message = "My PHP mail status is work";
$headers = "From:" . $from;
mail($to, $subject, $message, $headers);
echo "Email sent.";
Hi,
You have used wrong phpmailer code.
You should use the given code but phpmailer folder should be in same path and put the file within the ajax folder near the mail.php file
<?php require_once ‘phpmailer/PHPMailerAutoload.php’;
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = "smtp.gmail.com";
//Set the SMTP port number - likely to be 25, 465 or 587
//allow less seucre app from https://www.google.com/settings/security/lesssecureapps
$mail->Port = 465;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'ssl';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication
$mail->Username = "smtpuser@domain.com";
//Password to use for SMTP authentication
$mail->Password = "your smptpuser@domain.com email password”;
//Set who the message is to be sent from
$mail->setFrom(‘smtpuser@domain.com’, ‘Sent from Username’);
//Set who the message is to be sent to
$mail->addAddress('whomtosendemailaddress', 'whomtosendname');
//Set the subject line
$mail->Subject = "test";
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML("This is test");
//Replace the plain text body with one created manually
/* $mail->AltBody = 'This is a plain-text message body';
//Attach an image file
$mail->addAttachment('images/phpmailer_mini.png'); */
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo 'mail sent';
}
Thanks
Could you setting contact mail? i try all way but its not work
Cloud you help me setting contact page? Contact page isnt work. Please help me setting. I try all setting but its not works.
Hi,
You want to setup contact form according to your need but i can’t help you to change contact form. If you get any issue in existing html template then you will get support. This is a HTML template not a wordpress template if you want all those features within one shed you should buy wordpress template.
Thanks for your rating.