joshkerr
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
I had to disable the plugin until you release the fix.
Any word on when you’ll push out these changes? Could you perhaps email them to me?
Where would I go to get the update? I didn’t see anything in the dev log.
Forum: Alpha/Beta/RC
In reply to: Code Dump at bottom of every page after upgrading WPI think it is code from the admin bar that some dev forgot to comment out before checking it in. My bet is the next build won’t have the problem. I’ve read that the admin bar is buggy though.
Forum: Alpha/Beta/RC
In reply to: Code Dump at bottom of every page after upgrading WPActually, I was able to fix it. The wordpress admin bar in 3.1 is bugged. Remove it via this code in your custom functions file:
remove_action( 'init', 'wp_admin_bar_init' ); foreach ( array( 'wp_footer', 'wp_admin_bar_render' ) as $filter ) add_action( $filter, 'wp_admin_bar_render', 1000 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_me_separator', 10 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_my_account_menu', 20 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_my_blogs_menu', 30 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_blog_separator', 40 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_bloginfo_menu', 50 ); remove_action( 'wp_before_admin_bar_render', 'wp_admin_bar_edit_menu', 100 ); remove_action( 'wp_head', 'wp_admin_bar_css' ); remove_action( 'admin_head', 'wp_admin_bar_css' ); remove_action( 'wp_footer', 'wp_admin_bar_js' ); remove_action( 'admin_footer', 'wp_admin_bar_js' ); remove_action( 'wp_ajax_adminbar_render', 'wp_admin_bar_ajax_render' ); remove_filter( 'locale', 'wp_admin_bar_lang' );
Forum: Alpha/Beta/RC
In reply to: Code Dump at bottom of every page after upgrading WPI am also experiencing this problem. Did you find a quick fix for it?
Viewing 6 replies - 1 through 6 (of 6 total)