Discussion on Energon - Renewable Energy and Eco Friendly Technologies HTML template with Builder

Discussion on Energon - Renewable Energy and Eco Friendly Technologies HTML template with Builder

Cart 599 sales
Well Documented

WPRollers supports this item

Supported

This author's response time can be up to 1 business day.

47 comments found.

is this template contains demo data?

Hello, Dear Customer! This HTML template includes all pages and content like on our live demo: https://preview.themeforest.net/item/energy-renewable-energy-and-eco-friendly-technologies-html-template-with-builder/full_screen_preview/18359964?_ga=2.30409531.526824161.1632384483-1749526211.1615464032 Also, if you looking for a WordPress theme, you may purchase it here: https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629 If you have further questions – please ask us. Best Regards!

Hello, The purchased product does not work. while installing wordpress I get a message saying that the style.css stylesheet is missing.

Hello!
As you can see in the template name, this item is not a WordPress theme. It is simple HTML template.
You can find a WordPress version here:
https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629
You can submit a refund request for the HTML template.
Best regards!

Hola, compre la plantilla y las imagenes no se muestran, salen en gris

Hola! Gracias por la compra!
Las imágenes utilizadas en la plantilla no se incluyen en el archivo de descarga principal, son solo para fines de vista previa. De acuerdo con los Términos de Envato, reemplazamos todas las imágenes con marcadores de posición.
Proporcionamos una lista de enlaces a imágenes usadas en la documentación de la plantilla
Atentamente!

I tried to buy the template but I couldn’t, you must be having problems with the card operator

Hello! Thanks for question!
Please email us at support@wprollers.com and we will assist you.
Best Regards!

Hello,

Problem responsive on the slide :

on mobile the text is displayed in a block at the bottom of the photo

Hello, Dear Customer. Please email us at support@wprollers.com and we will assist you. Best Regards!

Just add this part of code at the end of your main.css:
@media (max-width: 991px) {
    .intro_section .container {
        position: absolute;
    }
    .flexslider .slides img {
        min-height: 400px;
    }
}
Best Regards!

Hello,

ok thank you for your help.

Best regards,

Hello,

at the same time as uploading the issue I get the following error: The package could not be installed. Unable to find styles.css stylesheet.

Hello! Thanks for purchase!
Pay attention, that is HTML template and it cannot be installed as a WordPress theme. You can find a WordPress version here:
https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629
For HTML version please submit a refund request.
Best regards!

hi, i bought this template and i need to use it as right to left in hebrew is this possible ?

Hello, Dear Customer.
Thanks for this question. Sorry,but our theme don’t support right to left in hebrew. Currently we offer you these sources for RTL implementation: https://rtl.daskhat.ir or http://rtlcss.com You may also contact this well-known developer which perform such requests: https://www.fiverr.com/deanos/convert-your-wordpress-html-theme-from-ltr-to-rtl-to-support-hebrew-arabic
Best Regards!

hey mate ! Hope you are well.

I bought your theme almost a month ago without knowing the technical side of it. Apparently the theme which i bought require lot of work from the web designer to finish it. I have made a mistake, now i have been told that i need to buy the whole theme which is listed @ $59. See if you can do something about it ? it will be great help.

One more question: Dose the theme comes with the photos as well ? If it dose than great or else I need to get the photos as well. If you can please let us know soonest as possible it would be great.

Hi there, Finally selected a theme to replace my current purchase. Sorry took a long time as i had to wait for my developer to advise. Below theme to swap. BooKeeper – Finances & Accounting HTML Template with Builder Thanking you in advancve

Send please a personal message with same text on email support@wprollers.com
Best Regards!

Thanking you

hello, whenever i try to add an item on the MENU (e.g our partners). This goes to the next line. Any asssistance

header.php doesn’t have 1509… Which file should i access exactly?

It seems that you are asking about WordPress version of this template, please leave your comment here: https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629
Best regards!

Hello Team, I purchased HML theme yet i intended to buy WP theme. Am not willing to buy another WP theme at $59.

i URGETLY NEED YOUR HELP vainney Kirumira +256705285493(whatsapp number).

Hello! Thanks for purchase!
You can find a WordPress version here:
https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629
For HTML version please submit a refund request.
Best regards!

Hello there. I bought your theme yesterday or the day before and made a research. I just randomly found one company with the exact same theme http://www.evklipsgroup.com And this company bought it as a final product from the company called Ideamax (https://ideamax.eu/). You can see in http://www.evklipsgroup.com in the footer the Ideamax put their license “Developed by IdeaMax.eu” ...........

Hello! Thanks for purchase!
Thanks for your help, we will take action.
Best Regards!

Hello, the form works well, like your link: “https://prnt.sc/o0afna”

the problem I have is that the “email” field arrives empty to my email box. Look at this link: https://www.cybertek.ec/images/email-no.JPG This is the site: https://www.cybertek.ec/

Can you help me with a line of code for this?

This is the code I am using:

<?php ////////////////////////// //Specify default values// //////////////////////////

//Your E-mail $your_email = ‘info@cybertek.ec’;

//Default Subject if ‘subject’ field not specified $default_subject = ‘Cybertek’;

//Message if ‘name’ field not specified $name_not_specified = ‘Por favor ingrese un nombre válido’;

//Message if e-mail sent successfully $email_was_sent = ‘Gracias, su mensaje fue enviado correctamente’;

//Message if e-mail not sent (server not configured) $server_not_configured = ‘Lo sentimos, el servidor de email no está configurado (function “mail()” disabled on your server?)’;

/////////////////////////// //Contact Form Processing// /////////////////////////// $errors = array();

//”name” field required by this PHP script even if // there are no ‘aria-required=”true”’ or ‘required’ // attributes on this HTML input field if(isset($_POST[‘name’])) {

if(!empty($_POST[‘name’])) $sender_name = stripslashes(strip_tags(trim($_POST[‘name’])));

if(!empty($_POST[‘message’])) $message = stripslashes(strip_tags(trim($_POST[‘message’])));

if(!empty($_POST[‘email’])) $sender_email = stripslashes(strip_tags(trim($_POST[‘email’])));

if(!empty($_POST[‘subject’])) $subject = stripslashes(strip_tags(trim($_POST[‘subject’])));

//Message if no sender name was specified if(empty($sender_name)) { $errors[] = $name_not_specified; }

$from = (!empty($sender_email)) ? ‘From: ’.$sender_email : ’’;

$subject = (!empty($subject)) ? $subject : $default_subject;

//sending message if no errors if(empty($errors)) {

//duplicating email meta (from and subject) to email message body $message_meta = ’’; //From name and email $message_meta .= ‘Nombre: ’. $sender_name . ”\r\n”; //Subject or default subject $message_meta .= ‘Teléfono: ’. ( $subject ? $subject : $default_subject ) . ”\r\n”;

//From email $message_meta .= ‘Email: ’. $sender_email . ”\r\n”;

//adding another CUSTOM contact form fields that added by user to email message body foreach ($_POST as $key => $value) { //checking for standard fields if ($key 'name' || $key ‘message’ || $key 'subject' || $key ‘email’ ) { continue; } //adding key-value pare to email message body $message_meta .= stripslashes(strip_tags(trim($key))) . ’: ’ . stripslashes(strip_tags(trim($value))) . ”\r\n”; }

$message = $message_meta . ”\r\n” . ‘Mensaje:’ . ”\r\n” . $message; $message = wordwrap($message, 70);

if (mail($your_email, $subject, $message, $from)) { echo $email_was_sent; } else { $errors[] = $server_not_configured; echo ‘ ’ . implode(‘
’, $errors ) . ‘ ’; } } else { echo ‘ ’ . implode(‘
’, $errors ) . ‘ ’; } } else { // if “name” var not send (‘name’ attribute of contact form input field was changed or missing) echo ’”name” variable were not received by server. Please check “name” attributes for your input fields’; } ?>

El mar., 11 jun. 2019 a las 1:51, Envato Market (<do-not-reply@market.envato.com>) escribió: Hello! Thanks for purchase!
It seems that your contact form works fine: https://prnt.sc/o0afna
Best regards!

You can view and reply to the message at https://themeforest.net/item/energy-renewable-energy-and-eco-friendly-technologies-html-template-with-builder/18359964/comments?page=2&filter=all#comment_22255633

Hello! Sorry for delay!
Can you please send us your contact-form.php via our email support@wprollers.com
Best regards!

Hello, I have a problem with the contact form, I need to get to the body of the email, the “email” field I created this line of code but it does not work: $ message_meta. = ‘Email:’. $ sender_email. ”\ r \ n”

What should I do?

This is the site: www.cybertek.ec

Hello! Thanks for purchase!
It seems that your contact form works fine: https://prnt.sc/o0afna
Best regards!

Hi! need help in order to configure the mail service in the php contact form.

Hello! Thanks for purchase and sorry for delay!
Does your hosting has PHP support for use search, contact form, Twitter and MailChimp widgets?
Best Regards!

Good mornong.

I’m a bit new in editing templates. I’m having troubles in how to edit the php file for the email sending.

¿Could you be so kind in giving me an small tutorial in how to make ir work?

Hello! Thanks for purchase and sorry for delay!
Does your hosting has PHP support for use search, contact form, Twitter and MailChimp widgets?
Best Regards!

Hello! Will I be able to make this template easy on my CMS or I may have difficulties?

Hello, Dear Customer! Thank you for your question. The theme, which you have bought is – HTML Template. If you want to build your website on WordPress CMS – please buy this theme: https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629 Best Regards!

No, i have another CMS. This version have bug with slider on mobile version – http://prntscr.com/k7nca4 Please, give me fix.

Actually it is not a bug, it is intended behavior.
If you want to change it try to do the following:
1. Wrap your slider images in div with class=”slide-image-wrap” like this:
<div class="slide-image-wrap"> <img src="images/slide01.jpg" alt="" /> </div>
2. Add this code to the very bottom of your main.css file
.intro_section .slide-image-wrap { opacity: 0.4; } .intro_section .slide-image-wrap img { opacity: 1; } @media (max-width: 991px) { .slide-image-wrap { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; } .flexslider .slides .slide-image-wrap img { display: none; } }
3. In your main.js file add this code:
jQuery(".slide-image-wrap").each(function(){ var $teaser = jQuery(this); var $image = $teaser.find("img").first(); if (!$image.length) { return; } var imagePath = $image.attr("src"); $teaser.css("background-image", "url(" + imagePath + ")"); });
after line 635
jQuery('.teaser-row .teaser').matchHeight();
so it shoul look like this
// Equalize height of teasers in tab pane jQuery('.teaser-row .teaser').matchHeight(); jQuery(".slide-image-wrap").each(function(){ var $teaser = jQuery(this); var $image = $teaser.find("img").first(); // if (!$image.length) { // $image = $teaser.parent().find("img").first(); // } if (!$image.length) { return; } var imagePath = $image.attr("src"); $teaser.css("background-image", "url(" + imagePath + ")"); });

My code is 1d3897f1-52e6-45a7-b14e-cb159f3ec8ff

Hello. I just bought your Template. Its Awsome but I just received the error while uploading to wordpress. Help me please.

Could not copy file: HTML/builder/js/tinymce/themes/inlite/src/main/js/tinymce/inlite/core/ElementMatcher.js

Hello,
As you can see from the item name it is HTML template and not WordPress theme. WordPress version available here https://themeforest.net/item/energy-solar-and-alternative-energy-wordpress-theme/19153629

Hello,

I’m trying to make the links on the header go to different sections within the same page. However, when i use // Target: name/id // and // Link: href // to target and link the links it does not work. I will click on it and nothing will happen. I’ve tried putting the target before the sections and after the sections. In conclusion, I’m wondering how to make it possible to make the links on the headers go to different sections on the same page.

Thank you!

Hello,
You must use id=”” attribute for this, not name=””

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