One of my favorite plugins was failing and I finally tracked it down to an error in the Geocraft theme. Until the support team can correct this, here is how you can patch it yourself. Specifically the google_map.php file was setting a session variable without starting a session first. This caused all PHP session variables to be deleted before each page load. Make the following change: Edit the the google_map.php file located in /geocrafttheme/library/widget/ Change: $_SESSION['count'] = 0; To: if( !isset( $_SESSION ) ) { // start a PHP session, but only if one is not already started session_start(); } $_SESSION['count'] = 0; I hope that this helps some of you too! - Cary