• Upon updating to the latest version, the css within my site was broken. It couldn’t locate the files and load them correctly.

    When I investigated the .php files for the source, I located on line 484 – 485 the code to call the css.

    First, I reverted it, or just flipped the comment code within the file. This solved my problem, but was not the solution.

    I changed site_url to home_url and moved the comment code back to its original form. This seems to work as well, and is a better solution as it keeps with the code.

    http://wordpress.org/extend/plugins/bbpress-post-toolbar/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m having the same issue but seem unable to sort it using the method you suggested :/

    I’m also having this issue and these fixes did nothing. Any ideas?

    guys really easy the fix this;

    open bbpress-post-toolbar.php

    line 484 //wp_register_style( 'bbp_5o1_post_toolbar_style', plugins_url('includes/toolbar.css', __FILE__) );

    clear “//” like this;

    wp_register_style( 'bbp_5o1_post_toolbar_style', plugins_url('includes/toolbar.css', __FILE__) );

    and

    line 485 add “//”

    like this

    //wp_register_style( 'bbp_5o1_post_toolbar_style', site_url('/?bbp_5o1_toolbar_css') );

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: bbPress Post Toolbar] Broken CSS’ is closed to new replies.