tracybcarpenter
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Dashboard Events not showing startdates for Seriesbump 🙂
Forum: Plugins
In reply to: [The Events Calendar] Dashboard Events not showing startdates for SeriesHi! 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.Forum: Plugins
In reply to: [WP Supersized] WP Supersized breaks on 3rd imageThank you bene!
Forum: Reviews
In reply to: [SanookSookjai Menu Icon] not working for me!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__ ));
}Forum: Plugins
In reply to: Subscribe2 not sending password emails when users register.Sorry, it was unrelated to the plugin
Forum: Everything else WordPress
In reply to: In Network Admin / Plugins / Add New All results are empty.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
Forum: Everything else WordPress
In reply to: In Network Admin / Plugins / Add New All results are empty.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.