Google Chrome stopped showing HTTPS contents (google map in this case) in HTTP pages (your page).
We are trying to find a way-around for this, hopefully we will update the plugin in next version.
@marsian
I have the opposite problem. I have a HTTPS site, but the Maps plugin tries to load from HTTP. I don’t see the map at this point.
If you are a little familiar with editing php-Files you can fix this issue.
Connect to your Webspace and go to your WP-directory. From there open Subdirectory ../wp-content/plugins/templatesnext-onepager/templates. There you’ll find a file called ‘home-contact.php’.
Open this file with an editor, go to line 127 and change ‘http://’ in iframe to ‘https://’
before:
<iframe scr=”http://maps.google.com/%5Band so on]></iframe>
after:
<iframe scr=”https://maps.google.com/%5Band so on]></iframe>
That’ it. Save the file, and try if it works 😉
@buching_er
This worked perfectly! THANK YOU!!