• Resolved alberstein

    (@alberstein)


    The only settings option I have is “Show footer in Posterboard tile”
    Missing:
    Posterboard pages show at most
    Stream pages show at most
    Posterboard tile minimum width
    Posterboard style

    Core Calendar Version 2.5.13
    Extended Views Version 1.2.11

    Screenshot - Settings missing
    Settings present on another site w/ same theme and versions.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Benjamin

    (@bsokic)

    Hi,

    Have you tried reinstalling the “Extended Views” addon?

    Thread Starter alberstein

    (@alberstein)

    I did. Did this for core too. Deactivated, deleted, redownloaded, reinstalled. Same result.

    Thread Starter alberstein

    (@alberstein)

    I know I’m not the first person to have this problem. What causes this and fixes it?

    Thread Starter alberstein

    (@alberstein)

    Tried deleting uninstall.php from core plugin, in order to save my events. Uninstalled and reinstalled and problem persisted. Then I compared DB entries of working install vs non working and discovered some entries that needed to be cleaned up in the non-working install.

    My solution was to keep and use uninstall.php, but I edited it to remove lines pertaining to removing post and drop tables, and removed a line a little further down regarding cleaning up tables:

    uninstall.php @ Line 77: remove

    /**
     * Deletes posts and drop tables
     */
    function ai1ec_clean_up_tables() {
            global $wpdb;
            // Delete events
            $table_name = $wpdb->prefix . 'ai1ec_events';
            $query      = 'SELECT DISTINCT <code>ID</code> FROM 

    ‘ . $wpdb->posts .
    WHEREpost_type` = \’ai1ec_event\”;
    foreach ( $wpdb->get_col( $query ) as $postid ) {
    wp_delete_post( (int) $postid, true );
    }

    // Delete table events
    ai1ec_delete_table_and_backup( $table_name );

    // Delete table event instances
    $table_name = $wpdb->prefix . ‘ai1ec_event_instances’;
    ai1ec_delete_table_and_backup( $table_name );

    // Delete table event feeds
    $table_name = $wpdb->prefix . ‘ai1ec_event_feeds’;
    ai1ec_delete_table_and_backup( $table_name );

    // Delete table category colors
    $table_name = $wpdb->prefix . ‘ai1ec_event_category_meta’;
    ai1ec_delete_table_and_backup( $table_name );

    // Delete legacy logging table
    $table_name = $wpdb->prefix . ‘ai1ec_logging’;
    ai1ec_delete_table_and_backup( $table_name );
    }

    
    
    Then find and edit 
    
    

    function ai1ec_clean_up_site() {
    // Delete event categories taxonomy
    ai1ec_remove_taxonomy( ‘events_categories’ );
    // Delete event tags taxonomy
    ai1ec_remove_taxonomy( ‘events_tags’ );
    // Delete custom user roles and capabilities
    ai1ec_remove_custom_user_roles_capabilities();
    // Delete custom user meta
    ai1ec_remove_custom_user_meta();
    ai1ec_uninstall_crons();
    ai1ec_uninstall_options();
    ai1ec_clean_up_tables(); <— delete this line
    }`

    to:

    function ai1ec_clean_up_site() {
            // Delete event categories taxonomy
            ai1ec_remove_taxonomy( 'events_categories' );
            // Delete event tags taxonomy
            ai1ec_remove_taxonomy( 'events_tags' );
            // Delete custom user roles and capabilities
            ai1ec_remove_custom_user_roles_capabilities();
            // Delete custom user meta
            ai1ec_remove_custom_user_meta();
            ai1ec_uninstall_crons();
            ai1ec_uninstall_options();
    }

    This will preserve your events and remove everything else.

    Hi @alberstein,

    Apologies for the delay in responding to your inquiry. We’ve updated the calendar and have issued several bug fixes with the newest releases for our WordPress Core Plugin, as well as our hosted calendar versions.

    If you are still experiencing difficulty or for faster assistance, please login to your Timely account and click on the “Get Help” link. You may also reply to this ticket, or open a new ticket.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Extended Views Posterboard Settings MIssing’ is closed to new replies.