Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter tracybcarpenter

    (@tracybcarpenter)

    bump 🙂

    Thread Starter tracybcarpenter

    (@tracybcarpenter)

    Hi! I love and appreciate the “Hang in there!” I did break up the series that we had, so in these tests you will see another series showing up for that reason. I have tried multiple things to search for today. With “StartDate” set to “in the future” it shows tomorrow’s but not things are still need to happen today. Startdate is today, is what we have been using, which is shown in my post below.

    Per the multiday, I get it about “startdate” for that, but the way it works in the front end (when working) is the way we need it in the backend for management.
    I am showing the front end for that, as were we are seeing multiday events showing up multiple times on the same day. I did deactivate other plugins, but did not see a change.

    https://thenounsquare.info/the-events-calendar-issue/

    Thank you bene!

    IMHO, it’s a great plugin, clean clear code, just not tested well enough. This is what worked for me:

    In sanooksookjai-menu-icon.php change…

    FROM
    add_action( ‘admin_init’, ‘sanook_menus_icon_scripts’ );
    function sanook_menus_icon_scripts() {
    wp_enqueue_script( ‘thickbox’ );
    wp_enqueue_script( ‘media-upload’ );
    wp_enqueue_script( ‘sanook-menu-icon’, plugins_url( ‘customize.js’ , __FILE__ ));
    wp_enqueue_style( ‘thickbox’ );
    wp_enqueue_style( ‘sanook-menu-icon’, plugins_url( ‘customize.css’ , __FILE__ ));
    }

    TO

    add_action( ‘admin_enqueue_scripts’, ‘my_enqueue’ );
    function my_enqueue($hook) {
    if( ‘nav-menus.php’ != $hook )
    return;
    wp_enqueue_script( ‘thickbox’ );
    wp_enqueue_script( ‘media-upload’ );
    wp_enqueue_script( ‘custom-menu-icon’, plugins_url( ‘customize.js’ , __FILE__ ));
    wp_enqueue_style( ‘thickbox’ );
    wp_enqueue_style( ‘custom-menu-icon’, plugins_url( ‘customize.css’ , __FILE__ ));
    }

    This is what worked for me:

    In sanooksookjai-menu-icon.php change…

    FROM
    add_action( ‘admin_init’, ‘sanook_menus_icon_scripts’ );
    function sanook_menus_icon_scripts() {
    wp_enqueue_script( ‘thickbox’ );
    wp_enqueue_script( ‘media-upload’ );
    wp_enqueue_script( ‘sanook-menu-icon’, plugins_url( ‘customize.js’ , __FILE__ ));
    wp_enqueue_style( ‘thickbox’ );
    wp_enqueue_style( ‘sanook-menu-icon’, plugins_url( ‘customize.css’ , __FILE__ ));
    }

    TO

    add_action( ‘admin_enqueue_scripts’, ‘my_enqueue’ );
    function my_enqueue($hook) {
    if( ‘nav-menus.php’ != $hook )
    return;
    wp_enqueue_script( ‘thickbox’ );
    wp_enqueue_script( ‘media-upload’ );
    wp_enqueue_script( ‘custom-menu-icon’, plugins_url( ‘customize.js’ , __FILE__ ));
    wp_enqueue_style( ‘thickbox’ );
    wp_enqueue_style( ‘custom-menu-icon’, plugins_url( ‘customize.css’ , __FILE__ ));
    }

    Thread Starter tracybcarpenter

    (@tracybcarpenter)

    Sorry, it was unrelated to the plugin

    Thread Starter tracybcarpenter

    (@tracybcarpenter)

    But, got errors trying to network activate a new one.

    Warning: in_array() [function.in-array]: Wrong datatype for second argument in /nfs/c04/h02/mnt/58445/domains/x.com/html/wp-admin/includes/plugin.php on line 455

    Warning: Cannot modify header information – headers already sent by (output started at /nfs/c04/h02/mnt/58445/domains/x.com/html/wp-admin/includes/plugin.php:455) in /nfs/c04/h02/mnt/58445/domains/x.com/html/wp-includes/pluggable.php on line 866

    Warning: Cannot modify header information – headers already sent by (output started at /nfs/c04/h02/mnt/58445/domains/x.com/html/wp-admin/includes/plugin.php:455) in /nfs/c04/h02/mnt/58445/domains/x.com/html/wp-includes/pluggable.php on line 866

    Thread Starter tracybcarpenter

    (@tracybcarpenter)

    We’re on MU. I cleared this by going into the db via phpMyAdmin, the wp_sitemeta table, searching for met_key = active_sitewide_plugins, and deleting the content of meta_value, which was ‘a:0:{}’. So, it appears that we have to redo all of our network activation. 🙁 The micro sites seem to have held their settings.

Viewing 8 replies - 1 through 8 (of 8 total)