Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author chrisvrichardson

    (@chrisvrichardson)

    Hi,

    MapPress is fully compatible with 3.7+. I think the problem is your theme or another plugin is loading a very old version of jQuery (1.2.6, the current version is 1.10.2).

    You can confirm this by switching to a standard theme and deactivating your other plugins for a moment.

    If that’s the problem, you’ll have to find where this line is coming from and remove it – it could be in a theme template file or a plugin, search for ‘ajax.googleapis.com’:

    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>

    If you have other questions, please feel free to email me directly.

    Thread Starter baks

    (@baks)

    thank you so much ! i found the culprit line in the header.php of my theme

    I’m wondering if I have a similar issue — the maps on my site have also stopped showing up. We are running 3.8.1. I searched for the snippet you mention and I am not finding it, however.

    I have my javascript enqueued and using WordPress’ jquery, so it’s using 1.10.2. I’m not getting any js errors in Firebug.

    Any other thoughts? Any help would be appreciated. Thank you.

    Okay, I got a tip from the plugin author — I was missing the height. I am not using the shortcode but, rather, some template code. Previously I had this:

    $mymap = new Mappress_Map(array("width" => "100%"));

    When I added the height…

    $mymap = new Mappress_Map(array("width" => "100%", "height"=> "300px"));

    … the map showed up again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘map no longer showing up after upgrade’ is closed to new replies.