justincase404
Forum Replies Created
-
I have the exact same problem.
Forum: Plugins
In reply to: [Pronamic Google Maps] [Plugin: Pronamic Google Maps] Script Error in IEI was able to correct the problem by updating my theme. I removed the explicit loading of jQuery since the Admin page already includes it. My theme was loading it for my custom admin pages as well as the edit post page. That was causing the conflict with the map plugin’s edit section.
They way my theme was using jQuery in the admin page was using the $ to reference jQuery. So I followed the guidance to wrap all jQuery calls like this:
jQuery(document).ready(function($) { // $() will work as an alias for jQuery() inside of this function });Since then I have not had any problems with the map display or my theme’s admin pages.
Thanks,
Justin
Forum: Plugins
In reply to: [Pronamic Google Maps] [Plugin: Pronamic Google Maps] Script Error in IEIt looks like my theme includes jquery-1.3.2.min.js and the admin.js adds the plugin function to the wrong instance of jquery. If I don’t load jquery-1.3.2.min.js then the edit page works.
Forum: Plugins
In reply to: [Pronamic Google Maps] [Plugin: Pronamic Google Maps] Script Error in IEI am having the same problem in IE 8, IE 9, Chrome, and FF 4.0. I have been able to get it to work on the post and admin page using the TwentyTen theme. When I activate my ShopperPress theme, the admin page does not show the map. I get an error in the Firebug/Chrome console:
Uncaught TypeError: Object #<Object> has no method ‘pronamicGoogleMapsMetaBox’
post.php:993Uncaught TypeError: Cannot read property ‘click’ of undefinedThe map still works on the post display page just not the edit page.