• Resolved kshea712

    (@kshea712)


    under the section ATG across the map there should be an interactive map. it was working for a while. now it only shows up when i preview a page. otherwise, there is nothing.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Avirtum

    (@avirtum)

    You have the CORs issue, see the browser console log. (Mixed Content: … This request has been blocked; the content must be served over HTTPS)
    There are 4 possible solutions:
    1) Setup redirection from HTTP to HTTPS – https://stackoverflow.com/questions/4083221/how-to-redirect-all-http-requests-to-https
    2) Edit your .htaccess file and add the CORS section like below
    # BEGIN CORS
    <IfModule mod_headers.c>
    <FilesMatch “\.(jpg|png|json)$”>
    Header set Access-Control-Allow-Origin “*”
    </FilesMatch>
    </IfModule>
    # END CORS
    3) Edit your WP settings
    4) Try to use the “SSL Insecure Content Fixer” plugin if you use HTTPS

Viewing 1 replies (of 1 total)
  • The topic ‘Map Not showing up at all’ is closed to new replies.