Google Maps Errors

Please create google key here: https://developers.google.com/maps/documentation/javascript/get-api-key

The google maps script will available in:

For Epic - Storm - Build: \inc\functions.frontend.php

For Solido: \solido\footer.php

wp_enqueue_script(
                'gmaps',
                '//maps.googleapis.com/maps/api/js',
                array('jquery'),false,true );

Then add the key like:

wp_enqueue_script(
                'gmaps',
                '//maps.googleapis.com/maps/api/js?key=put-your-key-here',
                array('jquery'),false,true );

For Elixir: \inc\functions.shortcodes.php line 253

<script type="text/javascript" src="http://maps.google.com/maps/api/js?key=put-your-key-here"></script>

Then check your website again.