Title: slow loading
Last modified: October 18, 2017

---

# slow loading

 *  Resolved [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/)
 * Hi – have enjoyed good plugin for awhile, but recent update causing page loading
   problems.
 * went from 2.5 seconds to 5.9, directly attributable to bbp style pack.
 * it is disrupting subsequently loading until /css/bspstyle.css finishes
 * site is WP multisite, primary site enabled, uses autoptimize, WP Super Cache 
   and Speed Up – Lazy Load, genesis theme with bbPress Genesis Extend
 * looks like bspstyle.css not being optimized by autoptimize – loading on its own
   as shown by gtmetrix

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/slow-loading-46/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/slow-loading-46/page/2/?output_format=md)

 *  Thread Starter [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9597658)
 * I deactivated and then reactivated the plugin and it seems to caching and minifying
   properly now.
 * hopefully will stay that way. marking as resolved.
 * thanks (plugin is a lifesaver)
 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9598195)
 * great – glad you are fixed !
 *  Thread Starter [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9610909)
 * oops… back to being a problem
 * suspect it has something to do with the way autoptimize caching works — but bbp
   style pack css bspstyle.css is loading out of proper sequence again and blocking
   other elements – adding more than 2 seconds to visible page loading
 * I might simply copy the generated css and load it separately – but I rather take
   advantage of all the features of this nice plugin.
 * not sure how to troubleshoot it but you might want to see if you can duplicate
   any issues with autoptimize
 * thanks
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9611613)
 * If the stylesheets come with different media-types, than autoptimize will aggregate
   them in separate autoptimized stylesheets and the order might indeed be broken.
 * [see this blogpost](http://blog.futtta.be/2016/10/04/how-to-fix-css-media-types-impacting-autoptimized-css-order/)
   for an explanation of what is happening and example code of how to use autoptimize’s
   API to work around this problem.
 * but ideally the media-type is “corrected” in the plugin code 😉
 * hope this helps,
    frank (ao dev)
 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9612727)
 * [@optimizingmatters](https://wordpress.org/support/users/optimizingmatters/) 
   maybe you can help further, as this is not my expertise.
 * My style pack plugin has the following (shortened to get to the guts)
 *     ```
       function bsp_enqueue_css() {
       global $bsp_css_location ;
       $bsp_ver = get_option('bsp_version') ;
       wp_register_style('bsp', plugins_url('css/bspstyle.css',dirname(__FILE__) ), array( 'bbp-default' ), $bsp_ver, 'screen');
       	wp_enqueue_style( 'bsp');
   
       	wp_enqueue_style( 'dashicons');
   
       }
   
       add_action('wp_enqueue_scripts', 'bsp_enqueue_css');
       ```
   
 * so seems to be screen – unless the dashicons bit is mucking it up.
 * Thoughts?
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9612937)
 * > so seems to be screen – unless the dashicons bit is mucking it up.
   > Thoughts?
 * well, the questions is what media-value the other plugins (and theme) were loaded
   with in this specific case, so we’d need [@wasanajones](https://wordpress.org/support/users/wasanajones/)
   to share a URL 🙂
 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9613021)
 * great – thanks
 *  Thread Starter [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9614883)
 * Hello –
 * I really appreciate the attention to this.
 * It just so happens the site is just about ready to promote so I can share the
   URL..
 * [https://bikingpress.com](https://bikingpress.com)
 * GTMetrix with bbp style pack disabled [https://gtmetrix.com/reports/bikingpress.com/xxWZ40Um](https://gtmetrix.com/reports/bikingpress.com/xxWZ40Um)
   (
   when you see how many plugins and images the site has 1.5 second page load is
   kinda impressive – thanks largely to autoptimize (plug for the plugin)
 * GTMetrix with bbp style pack enabled [https://gtmetrix.com/reports/bikingpress.com/ArA1Puul](https://gtmetrix.com/reports/bikingpress.com/ArA1Puul)
 * bbp style pack also deserves some praise too, the forums are just ugly without
   it so it is worth figuring this out…
 * it also occurred to me that I could set it up so that bbp style pack doesn’t 
   load unless forum pages. I’ve played with different ways of doing that but not
   sure what would be best idea.
 * of course getting bbp style pack and autopimize playing together is best resolution
 * Thanks
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615001)
 * I’m trying to see your site un-optimized by adding `?ao_noptimize=1` to the URL,
   but your page cache seems to disregard querystring paramaters [@wasanajones](https://wordpress.org/support/users/wasanajones/),
   could you (briefly) change that?
 *  Thread Starter [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615046)
 * please try now, I had Remove Query Strings From Static Resources plugin enabled
 * I’ve cleared autoptimize, cloudflare, and supercache caches
 * cloudflare on development mode
 * thanks
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615098)
 * no, no dice, [https://bikingpress.com/?ao_noptimize=1](https://bikingpress.com/?ao_noptimize=1)
   still showing autoptimized HTML. can you check the
 * > Don’t cache pages with GET parameters. (?x=y at the end of a url)
 *  setting in WP Super Cache?
 *  Plugin Author [Robin W](https://wordpress.org/support/users/robin-w/)
 * (@robin-w)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615143)
 * just to say I am monitoring, and very happy to improve my plugin I that is the
   answer !!
 *  Thread Starter [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * (@wasanajones)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615167)
 * Hi –
 * Don’t cache pages with GET parameters. (?x=y at the end of a url)
 * is NOT checked (was not been checked)
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615193)
 * > is NOT checked
 * so can you check it? 🙂
 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/#post-9615215)
 * hmm, I just noticed `https://bikingpress.com/wp-content/plugins/bbp-style-pack/
   css/bspstyle.css` actually redirects to … the homepage, cfr. the waterfall chart
   in the GTMetrix test. Seems like somethings broken there?!

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/slow-loading-46/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/slow-loading-46/page/2/?output_format=md)

The topic ‘slow loading’ is closed to new replies.

 * ![](https://ps.w.org/bbp-style-pack/assets/icon-256x256.jpg?rev=2706563)
 * [bbp style pack](https://wordpress.org/plugins/bbp-style-pack/)
 * [Support Threads](https://wordpress.org/support/plugin/bbp-style-pack/)
 * [Active Topics](https://wordpress.org/support/plugin/bbp-style-pack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/bbp-style-pack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/bbp-style-pack/reviews/)

 * 20 replies
 * 3 participants
 * Last reply from: [wasanajones](https://wordpress.org/support/users/wasanajones/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/slow-loading-46/page/2/#post-9631077)
 * Status: resolved