• Why was the “new and integrated account activation process” instated in the 2.6.0 update? We’re running the Timely All-in-One Event Calendar on a WordPress Multisite and now none of the websites can access the plugin features or existing events. Is there a way to bypass this activation with code so every website doesn’t have to go through an activation process? Or is there a way to initiate access for all websites by adding something to the main site?

    Please advise.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello.
    I have the same issue.
    I use a multisite for schools’ blogs and since the update no one can add events or edits those that have been created before.
    The widget and the calendar page are still on line but nothing is possible in the dashboard without creating an account.
    Please help ??

    Hello.
    I have the same issue.
    I use a multisite and since the update no one can add events or edits those that have been created before.
    All events vanished and i can not see my older events, withput creating an account. Can you please help.

    Same here. What a frustrating change to introduce in this plugin. I’m looking at alternatives, now.

    Thread Starter pccweb

    (@pccweb)

    Short term solution is to downgrade to version 2.5.44

    It worked for me anyways.

    Hopefully we get an answer/resolution from the developer soon so we can stay current.

    The code below is what I created in a plugin that runs on both multi-site and single site installations. My plugin depends on the All in One Event Calendar and the recent upgrade locked calendar access for event creation and edits. This code may be placed in your theme’s function.php file if you are not using a custom plugin as I do.

    /*******************************
    * This checks if the ai1ec api settings are enabled, and
    * if not calls the function to enable them. It was required
    * due to Time.ly changes that turned off the options in
    * an update unless an account was created.
    *******************************************/
    $option_name = ‘ai1ec_api_settings’;
    $options_array = array(
    array (
    ‘option_name’ => ‘enabled’,
    ‘option_value’ => true
    ),
    ); // option array set ai1ec api to enabled

    $wp_options_array = get_option($option_name);

    if (!$wp_options_array[‘enabled’]) set_or_update_wp_options($option_name,$options_array);
    //Set enabled only if it isn’t already set.
    /********************************/

    /********************************************
    * function set_or_update_wp_options($option_name,$options_array)
    * This sets or updates an option stored in the
    * WordPress options table. An array saved in
    * this program is passed to this function an we
    * iterate through the array to get desired
    * options. Options are retrived from options
    * table, the array is updated and then saved
    * back to WP options using WP functions.
    **********************************************/
    function set_or_update_wp_options($option_name,$options_array) {
    //Get entire array

    $wp_options_array = get_option($option_name);

    if (!$wp_options_array) $wp_options_array = array (
    $option_name => $options_array);

    foreach ( $options_array as $option_value) {

    // Alter the options array with new value if it existed already
    if ($wp_options_array) $wp_options_array = array_replace($wp_options_array, array (
    $option_value[‘option_name’] => $option_value[‘option_value’]));
    } // end foreach
    //Update entire array
    $status = update_option( $option_name, $wp_options_array );

    return $status; // this is boolean true if update saved ok
    }
    // end set_or_update_wp_options($option_name,$options_array)
    /************************************************/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘New 2.6.0 account activation process locked out multisite users.’ is closed to new replies.