Title: davidmonnuar's Replies | WordPress.org

---

# davidmonnuar

  [  ](https://wordpress.org/support/users/davidmonnuar/)

 *   [Profile](https://wordpress.org/support/users/davidmonnuar/)
 *   [Topics Started](https://wordpress.org/support/users/davidmonnuar/topics/)
 *   [Replies Created](https://wordpress.org/support/users/davidmonnuar/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/davidmonnuar/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/davidmonnuar/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/davidmonnuar/engagements/)
 *   [Favorites](https://wordpress.org/support/users/davidmonnuar/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Speed Optimizer - The All-In-One Performance-Boosting Plugin] Improve Lazy Load add_filter priority](https://wordpress.org/support/topic/improve-lazy-load-add_filter-priority/)
 *  Thread Starter [davidmonnuar](https://wordpress.org/support/users/davidmonnuar/)
 * (@davidmonnuar)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/improve-lazy-load-add_filter-priority/#post-12171301)
 * Hello,
 * the built-in lazy load feature of my theme was already disabled when I’ve done
   the changes reported above.
 * Unfortunately just disabling it was not enough to prevent the overwriting of 
   the content.
 * Is it possible to define in my custom functions.php something able to change 
   the priority of the filters?
 * Best regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Speed Optimizer - The All-In-One Performance-Boosting Plugin] SG-Optimizer CSS Combine and WP Bakery](https://wordpress.org/support/topic/sg-optimizer-css-combine-and-wp-bakery/)
 *  Thread Starter [davidmonnuar](https://wordpress.org/support/users/davidmonnuar/)
 * (@davidmonnuar)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/sg-optimizer-css-combine-and-wp-bakery/#post-12170311)
 * At the end I was able to solve the issue by myself after reading other posts 
   in the support section.
 * Basically the issue was related to a CSS file to be used only in case of Internet
   Explorer 9 browser. This stylesheet of WPBakery didn’t show up in SG Optimizer
   exclude list and thanks to this function put in my functions.php
 * add_filter( ‘sgo_css_combine_exclude’, ‘css_combine_exclude’ );
    function css_combine_exclude(
   $exclude_list ) { // Add the style handle to exclude list. $exclude_list[] = ‘
   vc_lte_ie9′;
 *  return $exclude_list;
    }
 * I was able to exclude it.
 * Pay attention in the HTML header to styles like the following
    <!–[if lt IE 9]
   ><link rel=’stylesheet’ id=’vc_lte_ie9-css’ href=’[https://www.website.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css&#8217](https://www.website.com/wp-content/plugins/js_composer/assets/css/vc_lte_ie9.min.css&#8217);
   type=’text/css’ media=’screen’ /> <![endif]–>
 * This style if it doesn’t show up in SG Optimizer could be combined by the plugin
   and could become active in your CSS breaking the layout.
 * And finally yes, SG Optimizer respects the original order when it combines CSS
    -  This reply was modified 6 years, 9 months ago by [davidmonnuar](https://wordpress.org/support/users/davidmonnuar/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Speed Optimizer - The All-In-One Performance-Boosting Plugin] SG-Optimizer CSS Combine and WP Bakery](https://wordpress.org/support/topic/sg-optimizer-css-combine-and-wp-bakery/)
 *  Thread Starter [davidmonnuar](https://wordpress.org/support/users/davidmonnuar/)
 * (@davidmonnuar)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/sg-optimizer-css-combine-and-wp-bakery/#post-12168406)
 * Just to make a test, in order to simulate the plugin behaviour I’ve tried to 
   put all the css loaded by my website in a single CSS respecting the order in 
   which they appearead in the <head> without the Combine CSS feature enabled. I’ve
   replaced this custom combined css with the one created by SG Optimizer and the
   issue is solved.
 * My question is, Does SG Optimizer respect the original order when it combines
   CSS?
 * Best regards

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