• Hey,
    I faced a problem recently while using this plugin that after editing the event information the post associated with this event disappeared.
    I hope my quickfix will save someones time:

    Open pluginfolder/ec_management.class.php
    Scroll down until you find lines

    <input type=”hidden” name=”EC_editEventFormSubmitted” value=”1″ />
    <input type=”hidden” name=”EC_id” value=”<?php echo $id;?>” />

    Add a line

    <input type=”hidden” name=”EC_postID” value=”<?php echo htmlentities(stripslashes($event->postID),ENT_QUOTES);?>” />

    after them and you are done – everything saves.

    http://wordpress.org/extend/plugins/events-calendar/

  • The topic ‘WP Events Calendar Quickfix – post associated with event deleted after edit’ is closed to new replies.