19 comments found.
Hello, Google has changed the guidelines for the API for Maps. Now the map under contact is no longer displayed. This is also the case with your demo. I’ve customized the API key for my site, but still get a blank page. Many thanks for your feedback here. Best regards!
Hello! Thanks for purchase! Can you please provide a link to your page with Google map?
Yes, here it is: https://robert-geiger.de/kontakt_en.html
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=templateInitGoogleMap"></script>- add this code at the top of your ‘js/main.js’ file:
window.templateInitGoogleMap = function() {
//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":"#0e2f65"},{"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');
var geocoder = new google.maps.Geocoder();
geocoder.geocode({
address: address
}, function(data){
lat = data.results[0].geometry.location.lat;
lng = data.results[0].geometry.location.lng;
var center = new google.maps.LatLng(lat, lng);
var settings = {
mapTypeId: google.maps.MapTypeId.ROADMAP,
zoom: 14,
draggable: true,
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
}
Please note us will this be helpful.Best regards!
Many thanks for the help! I took both steps. The result is still the same. On your demo site, the maps do not work. Please check again.
Hello! We see that you have added a callback in your HTML code but did not change ‘js/main.js’ file.
Please unzip this archive into your ‘js’ folder:
http://webdesign-finder.com/files-for-users/business-adviser-mainjs.zip
Also please make sure that you create a backup of current ‘main.js’ file before unzip.
Best regards!
Hi! I copied the main.js to the directory. Google Maps is still not showing.
Hello! Could you please do this once again with this archive:
http://webdesign-finder.com/files-for-users/business-adviser-mainjs2.zip
Hi! Perfect. Now it works fine. Many thanks for your support.
How to create a carousel with intro section items to the home page as in the demo page, couldn’t find a way to add flex slider.
Hello!
Thanks for purchase!
Unfortunately there is no other way to insert dynamic content such as flex slider to the page except of grab and paste HTML code manually.
Best regards!
2a4de29d-a1be-4b9c-bff5-f45c3deb587d – 12 Feb 2018 how do I add a youtube video. I tried adding youtube video and it did not work
Hello,
You can use this page as example for inserting youtube video http://webdesign-finder.com/html/business-adviser/blog-single-video-right.html
<div class="embed-responsive embed-responsive-16by9">
<a href="https://www.youtube.com/embed/YE7VzlLtp-4" class="embed-placeholder">
<img src="images/gallery/07.jpg" alt="" />
</a>
</div>
Hi, i want to extend the contact form with one checkbox (required). Can you help me please.
Regards, Roland
Hello,
Here is code for checkbox:
<div class="checkbox">
<label>
<input type="checkbox" name="my-checkbox"> Checkbox label
</label>
</div>
Hi, thanks for your reply and code. I need a checkbox as required field. Is it possible to contact you via mail id: support@wprollers.com ? Thanks, Roland
Yes, you could contact us via this email.
To make input field required you just need to add “required” attribute to it:
<div class="checkbox">
<label>
<input type="checkbox" name="my-checkbox" reguired> Checkbox label
</label>
</div>
How do I remove the drop-down menus from all pages?I removed in index.html , but are present in other pages.
You must remove it from all pages (html files) that you use
Hi nice work, can you tell me if the Appointment and Contact forms are working
Hello!
Unfortunately, appointment are only front end styles for WordPress Booking plugin. It requires server side functionality such as database and PHP which are not used in HTML templates.
Contact form is working
Hi thanks for the reply
Hi there, the theme has a little problem on mobile and laptop, It is a small glitch in the banner area when images are spinning, pushing the menu up a bit.
Do you have a solution about how to fix that issue?
Thank you
Hello!
Sorry for delay.
Please clarify what do you naming “banner area”? Can you provide a screenshot?
I was talking about the Homepage where the carousel is. When those images are rotating, the menu at the top gets pushed up a bit (I would say 1 px) Open the homepage on a laptop and you’ll see it. Thank you.
Sory, but we don`t see any issues, can you make a screenshot?
Give me an email address where to send it, please
I sent you by email a screenshot.
Ok, I see it, but we could not reproduce this issue on our demo. Could you please provide link to your site or send an archive with your site files so we could test it locally?
Hi, i like to use the search script from business adviser to an other project.
Is this serach script separately available?
Thanks Roland
Hello, Roland!
Thanks for purchase and for your question.
Search functionality is our custom code, We have no this script serarately from our template. But you can try to copy it in your other project:
- Copy JS code from your “js/main.js” file from line 504 to line 540 (below ”//search modal” comment)
- create a bootstrap modal element after your opening “body” tag and add an ID attribute with “search_modal” value
- put your “search.php” to your project root directory
Best regards!
Awesome Job!
Thank you! 
Hello, I just bought the theme, and i discover that I can’t remove the constrain proportion selection of an image in the builder, somehow it always come back to this value ???? The build and its functionalities is an important for me and my project, i can’t imagine working without me.
Please can you respond with 24hr as i’m block because of this.
regards,
Hello!
Thanks for purchase!
Please try to open your “main.css” file in any editor that you prefer, go to line 954 and comment out “height: 100%” property for img tag:
http://prnt.sc/dzr3hf
Please note us if problem will not fixed.
Best regards!
very nice work 
Thank you! 
Amazing Work, Good Luck With Sale 
Thank you! 
Congratulations! Nice work, GLWS 
Thank you! 
Congratulations! Nice Work, Good Luck With Sale 
Thank you! 
Very nice Template! Good luck with sales! 
Thank you! 
GLWS! 
Thank you! 
Keep up the good work! DCSF
Thank you! 