Conflict with Google Calendar Events plugin
When I edit a pod entry in admin, after hitting 'Save changes', the settings screen for the Google Calendar Events plugin is displayed, with the highlighted message 'Ajustes guardados' (changes saved). The changes to the pod are saved correctly and I can't see any other ill effects.
I am using the latest version of both plugins & WP.
Any ideas?
2 Answers
I've gotten around this by commenting out the following lines (very beginning) of plugins/google-calendar-events/admin/edit.php:
//Redirect to the main plugin options page if form has been submitted /* if(isset($_GET['action'])){ if($_GET['action'] == 'edit' && isset($_GET['updated'])){ wp_redirect(admin_url('options-general.php?page=' . GCE_PLUGIN_NAME . '.php&updated=edited')); } } */
It seems that gce is picking up the same form action as the pods submission. I'm not sure if this is going to screw up GCE... But I don't <em>think</em> so since I don't plan on editing my gce settings again.
Wow that's weird, they aren't even checking 'page' ... that's bad. They should be doing if (isset($_GET['page']) && GCE_PLUGIN_NAME == $_GET['page']) there!


