Discussion on LifeGuide - Personal and Life Coach HTML template with Builder

Discussion on LifeGuide - Personal and Life Coach HTML template with Builder

Cart 117 sales
Well Documented

mwtemplates supports this item

Supported

42 comments found.

Does this template come with sign in and or sign up forms?

Hello!
Thanks for your interest to our template!
This item is a set of regular static HTML files without any backend code.
You can find a WordPress version of this design here:
https://themeforest.net/item/lifeguide-personal-and-life-coach-wordpress-theme/19768004
Best regards!

Is there guidance on how to change color schemes?

Hello! Thanks for purchase!
If you want to change the color schemes for this template, such as the main color, simply replace all instances of the main color hex code with the color hex value you want in the “main.css” file.
Best regards!

i shouldn’t have to pay full price $59 for this since i’ve already paid $23 for the otherversion that didn’t clearly say it was NOT Word Press version of the theme

For HTML version please submit a refund request.
Best Regards!

when i downloaded the zip file and went to my wordpress to install the theme, i got a message that the install failed The package could not be installed. The theme is missing the style.css stylesheet.

I then downloaded it locally to my drive and there seems to be several .css document in the package.

Can you help

i don’t think i should pay 54 more dollars

pardon my error – 59 more

For HTML version please submit a refund request.
Best Regards!

Hi. does not show the map in contact page. my key information is correct.

Hello! Thanks for purchase!
Please open file main.js which locates /js/main.js and go approximately to the line # 1079. Chage please this part of code from line: 1079 to line 1141:
jQuery(window).on('load', function(){
    windowLoadInit();

    //Google Map script
    var $googleMaps = jQuery('#map, .page_map');
    if ( $googleMaps.length ) {
        $googleMaps.each(function() {
            var $map = jQuery(this);

            var lat;
            var lng;
            var map;

            //map styles. You can grab different styles on https://snazzymaps.com/
            var styles = [{"featureType":"administrative","elementType":"labels.text.fill","stylers":[{"color":"#444444"}]},{"featureType":"landscape","elementType":"all","stylers":[{"color":"#f2f2f2"}]},{"featureType":"poi","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"road","elementType":"all","stylers":[{"saturation":-100},{"lightness":45}]},{"featureType":"road.highway","elementType":"all","stylers":[{"visibility":"simplified"}]},{"featureType":"road.arterial","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"all","stylers":[{"visibility":"off"}]},{"featureType":"water","elementType":"all","stylers":[{"color":"#46bcec"},{"visibility":"on"}]}];

            //map settings
            var address = $map.data('address') ? $map.data('address') : 'london, baker street, 221b';
            var markerDescription = $map.find('.map_marker_description').prop('outerHTML');

            //if you do not provide map title inside #map (.page_map) section inside H3 tag - default titile (Map Title) goes here:
            var markerTitle = $map.find('h3').first().text() ? $map.find('h3').first().text() : 'Map Title';
            var markerIconSrc = $map.find('.map_marker_icon').first().attr('src');

            //type your address after "address=" 
            jQuery.getJSON('http://maps.googleapis.com/maps/api/geocode/json?address=' + address, function(data) {

                lat = data.results[0].geometry.location.lat;
                lng = data.results[0].geometry.location.lng;

            }).complete(function(){

                var center = new google.maps.LatLng(lat, lng);
                var settings = {
                    mapTypeId: google.maps.MapTypeId.ROADMAP,
                    zoom: 16,
                    draggable: false,
                    scrollwheel: false,
                    center: center,
                    styles: styles 
                };
                map = new google.maps.Map($map[0], settings);

                var marker = new google.maps.Marker({
                    position: center,
                    title: markerTitle,
                    map: map,
                    icon: markerIconSrc,
                });

                var infowindow = new google.maps.InfoWindow({ 
                    content: markerDescription
                });

                google.maps.event.addListener(marker, 'click', function() {
                    infowindow.open(map,marker);
                });

            });
        }); //each
    }//google map length

}); //end of "window load" event
To this:
function initGoogleMap() {
        //Google Map script
        var $googleMaps = $('#map, .page_map');
        if ( $googleMaps.length ) {
            $googleMaps.each(function() {
                var $map = $(this);

                var lat;
                var lng;
                var map;

                // light style
                var styles = [{"featureType": "water","elementType": "geometry","stylers": [{"color": "#e9e9e9"},{"lightness": 17}]},{"featureType": "landscape","elementType": "geometry","stylers": [{"color": "#f5f5f5"},{"lightness": 20}]},{"featureType": "road.highway","elementType": "geometry.fill","stylers": [{"color": "#ffffff"},{"lightness": 17}]},{"featureType": "road.highway","elementType": "geometry.stroke","stylers": [{"color": "#ffffff"},{"lightness": 29},{"weight": 0.2}]},{"featureType": "road.arterial","elementType": "geometry","stylers": [{"color": "#ffffff"},{"lightness": 18}]},{"featureType": "road.local","elementType": "geometry","stylers": [{"color": "#ffffff"},{"lightness": 16}]},{"featureType": "poi","elementType": "geometry","stylers": [{"color": "#f5f5f5"},{"lightness": 21}]},{"featureType": "poi.park","elementType": "geometry","stylers": [{"color": "#dedede"},{"lightness": 21}]},{"elementType": "labels.text.stroke","stylers": [{"visibility": "on"},{"color": "#ffffff"},{"lightness": 16}]},{"elementType": "labels.text.fill","stylers": [{"saturation": 36},{"color": "#333333"},{"lightness": 40}]},{"elementType": "labels.icon","stylers": [{"visibility": "off"}]},{"featureType": "transit","elementType": "geometry","stylers": [{"color": "#f2f2f2"},{"lightness": 19}]},{"featureType": "administrative","elementType": "geometry.fill","stylers": [{"color": "#fefefe"},{"lightness": 20}]},{"featureType": "administrative","elementType": "geometry.stroke","stylers": [{"color": "#fefefe"},{"lightness": 17},{"weight": 1.2}]}];

                //markers
                var $markers = $map.find('.marker');

                //map settings
                var address = $markers.first().find('.marker-address').text() ? $markers.first().find('.marker-address').text() : 'london, baker street, 221b';
                var geocoder = new google.maps.Geocoder();

                var draggable = $map.data('draggable') ? $map.data('draggable') : false;
                var scrollwheel = $map.data('scrollwheel') ? $map.data('scrollwheel') : false;

                //type your address after "address=" 
                geocoder.geocode({
                    address: address
                }, function(data){

                    lat = data[0].geometry.location.lat();
                    lng = data[0].geometry.location.lng();

                    var center = new google.maps.LatLng(lat, lng);
                    var settings = {
                        mapTypeId: google.maps.MapTypeId.ROADMAP,
                        zoom: 16,
                        draggable: draggable,
                        scrollwheel: scrollwheel,
                        center: center,
                        styles: styles
                    };
                    map = new google.maps.Map($map[0], settings);

                    var infoWindows = [];

                    $($markers).each(function(index) {

                        var $marker = $(this);
                        var markerTitle = $marker.find('.marker-title').text();

                        //building info widnow HTML code
                        var markerDescription = '';
                        markerDescription += markerTitle ? '<h3 class="makret-title">' + markerTitle + '</h3>' : '';
                        markerDescription += $marker.find('.marker-description').html() ? '<div class="marker-description">' + $marker.find('.marker-description').html() + '</div>' : '';
                        if(markerDescription) {
                            markerDescription = '<div class="map_marker_description">' + markerDescription + '</div>';
                        }

                        geocoder.geocode({
                            address: $marker.find('.marker-address').text()
                        }, function(data){
                            var iconSrc = $marker.find('.marker-icon').attr('src');

                            var lat = data[0].geometry.location.lat();
                            var lng = data[0].geometry.location.lng();

                            var center = new google.maps.LatLng(lat, lng);

                            var marker = new google.maps.Marker({
                                position: center,
                                title: markerTitle,
                                map: map,
                                icon: iconSrc
                            });

                            var infowindow = new google.maps.InfoWindow({
                                content: markerDescription
                            });

                            infoWindows.push(infowindow);

                            google.maps.event.addListener(marker, 'click', function() {
                                for (var i=0;i<infoWindows.length;i++) {
                                    infoWindows[i].close();
                                }
                                infowindow.open(map,marker);
                            });
                        });
                    });
                });
            }); //each Google map
        }//google map length
    }
    window.initGoogleMap=initGoogleMap;
Best regards!

it gives an error. please fix it on your demo site. I look at the demo site and edit the codes. best regards!

Hello, now you can see that the map work fine: http://webdesign-finder.com/html/lifeguide/contact.html
If you will have some difficult please contact us.
Best Regards!

Hello there, i purchased your template, very lovely.

However, for the owl-carousel filter, how do i setup different buttons? (photos / videos etc)

Filter1Filter1Filter1Filter1

All these .filter1, if i wanted to have different categories, how do i do that without duplicating code? thank you

Hello! Thanks for purchase!
Just replace the Filter1 with your appropriate categories for example:
 <a href="#" data-filter=".photos">photos</a>
And put please your filter in appropriate block with image:
<div class="isotope-item col-lg-3 col-md-6 col-sm-12 photos">
    <div class="vertical-item gallery-item content-absolute text-center cs">
        <div class="item-media">
            <img src="images/gallery/01.jpg" alt="" />
        </div>
    </div>
</div>
Best regards!

Thanks, for the reply. But if i had 30 images wouldnt my HTML file be super long? Or is this the only way :)

Sorry, but is the only way.
Best regards!

Hi, I try your demo but right off see issues.

What I tried:

1- Added topline gradient section 2- Added intro section (single) 3- Edited intro section to change background image and saved. It disappears completely?

By chance clicked the “grid button” and the intro section is shown. Unclick and it disappears.

You have any plans to fix this? Do not wish to buy something that not work:)

Thanks and please let me know.

Hello, can you provide a screenshot of your issues?
Best Regards!

Your LifeGood template is interesting for me Could You please describe functionality of calendar. Is it just month sheet published with available or busy days or can be used as pick an appontment (date & time) with email confirmation or something? Thanks in advance Regards Igor

Hello! Thanks for question and sorry for delay!
This calendar is only front end markup and styles for wordpress booked plugin, please check wordpress version https://themeforest.net/item/lifeguide-personal-and-life-coach-wordpress-theme/19768004
Best Regards!

lifeguide html5 theme contact map is not working now… any fix aviable?

Hello!
There was changes in Google Maps API. You need to set up your billing account and get a new API key. Best regards!

That means i have to pay google? or is just a new procedure?

I am having difficulty with the Slider. It does not appear.

www.amycoello.com

Hello,
Looks like you are addressing to the wrong item. It does not looks like your site was built with this template

Hi, I have another question. Is it possible to change the header behavior when scrolling? On phones I would like to always show the withe header with the logo and the nav button, disable the scrolling effect. The reason is that the logo is covering too much of the photos in the slider. On bigger resolutions the scrolling works fine and should stay. Thanks!

Thanks, I did add the code but it doesn’t seem to work? I now have this in main.js from line 812:

var $header = jQuery('.page_header').first(); if (window.matchMedia("(max-width: 767px)").matches) { $header.removeClass('transparent_header').addClass('header_white'); } if ($header.length)

Can you provide a link to your site?

Sure, I just sent you a message with the link via Envato

Hi, can you tell me where I can change the text for “NEXT” and “PREV” in the header slider? I need to use something else because the site I’m making with the Lifeguide template will not be in English. Thanks in advance!

Hello,
You can change it in main.js file that located in js/ folder. You need lines 746, 747

Thanks!

Hi How can i include a black 50% layer in to the slider to make more titles more visible in this template? Thanks.

Try the following:
1. Change the background color of slides from color to dark

from
<ul class="slides"> <li class="cs"> ... </li> </ul>
to
<ul class="slides"> <li class="ds"> ... </li> </ul>
Now your text will become grey. You can make it white again just adding “grey” class to it
<p class="big grey"> ... </p>

2. Add this css code .flexslider .slides .ds img { opacity: 0.5; }
It should do the trick

Thanks a lot! Works OK. Great support.

Hi again, Titles in main slider (flexslider in index.html) goes down when max char width are reached. Then i reduce font size to half, more char was allowed but again when one line limit is reached text goes down. In resume how can i get 2 lines (or 3) in main slider title. Thank ba466665-d66f-4a0a-9cbf-a6bbb6d5d264 – 26 Oct 2017

UPDATE: In F12 mode By disabiling height:100% in .intro_section .slide_description_wrapper::before class the title goes up! But a dont know is this is ok.. Thanks.

Return “height: 100%;” back and add this css
.intro_section .slide_description_wrapper { font-size: 0; } .intro_section .slide_description { font-size: 16px; }
This should align vertical your content. But, also, you should consider to reduce font-size since you have long strings on some slides and it does not fit by the height

WOW! Great Support… i often buy templates for my client proyects and i never had this kind of support. Congrats. One last thing… any tip to include a black 50% layer in to the slider to make more titles more visible? Im shure have to look your portfolio for futher Works. Thanks again.

Hi… I need to insert 5 col section instead 4 col section in the icon teaser section… it is posible? Thanks ba466665-d66f-4a0a-9cbf-a6bbb6d5d264 – 26 Oct 2017

Hello! Thanks for purchase!
Please try following solution:
https://blog.polarbits.co/2014/02/16/quick-tips-5-column-layout-with-twitter-bootstrap/
Best regards!

Thanks, this works ok!

We are glad to assist you! :)

ba466665-d66f-4a0a-9cbf-a6bbb6d5d264 – 26 Oct 2017 Hi, how ca i do if i want to change the logo for a tree color logo svg no text: index: http://actioncoachsur.com.mx/principal.php about: http://actioncoachsur.com.mx/acerca.php how can i change the b/w logo versión for the color logo versión in index page? thanks
It woks OK whit SVG and PNG in Chrome but not working in IE11… i suppose its somthing about compatibility… http://actioncoachsur.com.mx/principal.php thanks
Your right, IE doesn’t support CSS filters.
Ok, then you can use two images, color and b/w, and hide one of them with css in diferent situations:
HTML: <a href="principal.php" class="logo-wrapper"> <img src="images/logo.png" alt="actioncoach logo" style="max-width: 220px" /> <img src="images/logo-bw.png" alt="actioncoach logo" style="max-width: 220px" /> </a> CSS: .affix-top .logo-wrapper img:first-child { display: none; } .affix .logo-wrapper img:last-child { display: none; }
Also you need to remove previous css code .affix-top .logo-wrapper img:last-child { filter: brightness(0) invert(1); }

Thanks it works OK

Great Work! 1 issue – The MailChimp Form – So I’m using your default form in the “GAIN A SUCCESSFUL LIFE” Section on the home page. I have changed the store-address.php file to reflect our API and Unique List ID.

It still doesn’t work. When you click “Submit,” nothing happens. I have 2 questions:

1) How do I fix this.

2) When inputting the API and Unique List ID, should you use the quotation marks”” or not use them. For example, I will give 4 options. Please let me know which option it should look like:

A. MCAPI (’###’); B. MCAPI (###);

and

C. $list_id = ”###”; D. $list_id = ###;

Which one out of A & B and which one out of C & D.

PS. contact form works perfectly

Works like a charm! BUT… what’s the best way to also include other parameters such as First and last Name?

For this purpose you need to make some adjustments in main.js and store-address.php

1. Replace line 580 in main.js data: 'ajax=true&email=' + escape($form.find('.mailchimp_email').val()), with this data: 'ajax=true&email=' + escape($form.find('.mailchimp_email').val()) + '&fname=' + escape($form.find('.mailchimp_fname').val()) + '&lname=' + escape($form.find('.mailchimp_lname').val()),

2. Replace line 24 in store-address.php if($api->listSubscribe($list_id, $_GET['email'], '' ) === true) { with this if($api->listSubscribe($list_id, $_GET['email'], array( 'FNAME' => $_GET['fname'], 'LNAME' => $_GET['lname']) ) === true) {



Here is html code for subscribe section <section class="ls ms section_padding_150 section_subscribe parallax"> <div class="container"> <div class="row"> <div class="col-md-offset-1 col-md-10 col-lg-offset-2 col-lg-8 text-center"> <h2 class="section_header"> Gain a Successful Life </h2> <p> Subscribe to our Newsletter right now to be updated. We promice not to spam! </p> </div> </div> <div class="row"> <div class="col-sm-6 col-sm-offset-3 text-center"> <div class="widget"> <form class="signup" action="./" method="get"> <div class="form-group"> <input name="first-name" type="text" class="form-control mailchimp_fname" placeholder="First Name"> </div> <div class="form-group"> <input name="last-name" type="text" class="form-control mailchimp_lname" placeholder="Last Name"> </div> <div class="form-group"> <input name="email" type="email" class="mailchimp_email form-control" placeholder="Your Email Address"> </div> <div class="subscribe-submit"> <button type="submit" class="theme_button color1"> Subscribe </button> </div> <div class="response"> </div> </form> </div> </div> </div> </div> </section>

WORKED PERFECTLY! Thanks so much! #GreatSupport!

actual Images missing in download, only place-holders ,

Hello!
According to Envato Terms we have replaced all images with placeholders.
You can find note about this in template description.

We provide a list of links to used images in template documentation

The actual images in the demo are missing, getting only placeholders

Hi! I was having trouble uploading this theme on my hosting. Then I realize that this isn’t a Wordpress theme. Do you have a Wordpress theme version and if no can you refund me?

Hello!
WordPress version will be available soon, it is on reviewing now.
If HTML Template does not suit you then create a refund request

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