Title: [Plugin: bbPress Post Toolbar] Stopped working
Last modified: August 20, 2016

---

# [Plugin: bbPress Post Toolbar] Stopped working

 *  [vulneratum](https://wordpress.org/support/users/vulnertum/)
 * (@vulnertum)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-bbpress-post-toolbar-stopped-working/)
 * I just recently updated bbpress and the toolbar stopped working…Any suggestions?
 * [http://wordpress.org/extend/plugins/bbpress-post-toolbar/](http://wordpress.org/extend/plugins/bbpress-post-toolbar/)

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

 *  [ostenfeldt](https://wordpress.org/support/users/ostenfeldt/)
 * (@ostenfeldt)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-bbpress-post-toolbar-stopped-working/#post-2907757)
 * It’s the same for me… stopped working
 *  [Eric McNiece](https://wordpress.org/support/users/emcniece/)
 * (@emcniece)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-bbpress-post-toolbar-stopped-working/#post-2907759)
 * Mine still works, but I’ve noticed that when I’m loading images from the media
   gallery in the post edit screen, the console pops a 404 on `/?bbp_5o1_toolbar_css`.
 * Further investigations leads us to line 482 of plugins/bbpress-post-toolbar.php:
 *     ```
       function script_and_style() {
       		wp_register_script( 'bbp_5o1_post_toolbar_script', plugins_url('includes/toolbar.js', __FILE__) );
       		//wp_register_style( 'bbp_5o1_post_toolbar_style', plugins_url('includes/toolbar.css', __FILE__) );
       		wp_register_style( 'bbp_5o1_post_toolbar_style', site_url('/?bbp_5o1_toolbar_css') );
   
       		wp_enqueue_script( 'bbp_5o1_post_toolbar_script' );
       		wp_enqueue_style( 'bbp_5o1_post_toolbar_style' );
       	}
       ```
   
 * Interesting that the first `bbp_5o1_post_toolbar_style` has been commented and
   is instead loaded as a $_GET variable. Wtf?
 * Anyway, replaced with the following to prevent timeout on admin screens:
 *     ```
       function script_and_style() {
       		if( !is_admin() ){
       			wp_register_script( 'bbp_5o1_post_toolbar_script', plugins_url('includes/toolbar.js', __FILE__) );
       			//wp_register_style( 'bbp_5o1_post_toolbar_style', plugins_url('includes/toolbar.css', __FILE__) );
       			wp_register_style( 'bbp_5o1_post_toolbar_style', site_url('/?bbp_5o1_toolbar_css') );
   
       			wp_enqueue_script( 'bbp_5o1_post_toolbar_script' );
       			wp_enqueue_style( 'bbp_5o1_post_toolbar_style' );
       		}
       	}
       ```
   
 * But of course this only fixes the Media Library issue… I suspect you guys will
   still see that on the forum side.
 * – Have you tried resetting the custom ordering from the settings page? `/wp-admin/
   plugins.php?page=bbpress-post-toolbar`
 * – What happens when you try commenting out the `wp_register_style( 'bbp_5o1_post_toolbar_style',
   site_url('/?bbp_5o1_toolbar_css') );` line and uncomment the `wp_register_style('
   bbp_5o1_post_toolbar_style', plugins_url('includes/toolbar.css', __FILE__) );`?

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

The topic ‘[Plugin: bbPress Post Toolbar] Stopped working’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/bbpress-post-toolbar.svg)
 * [bbPress Post Toolbar](https://wordpress.org/plugins/bbpress-post-toolbar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/bbpress-post-toolbar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/bbpress-post-toolbar/)
 * [Active Topics](https://wordpress.org/support/plugin/bbpress-post-toolbar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbpress-post-toolbar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbpress-post-toolbar/reviews/)

## Tags

 * [not](https://wordpress.org/support/topic-tag/not/)
 * [working](https://wordpress.org/support/topic-tag/working/)

 * 2 replies
 * 3 participants
 * Last reply from: [Eric McNiece](https://wordpress.org/support/users/emcniece/)
 * Last activity: [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-bbpress-post-toolbar-stopped-working/#post-2907759)
 * Status: not resolved