Title: Site Optimizer compatible with EW
Last modified: July 1, 2019

---

# Site Optimizer compatible with EW

 *  [vroom66](https://wordpress.org/support/users/vroom66/)
 * (@vroom66)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/site-optimizer-compatible-with-ew/)
 * Hello does anyone have an optimizer that is compatible? I had Autoptimize on 
   which was helping the site speed a lot, but the images weren’t showing on the
   rating form in the separate view so I had to disable it. I can’t find where to
   exclude specific pages on Autoptimize, so wondered who is using any successfully
   so I can try something else?

Viewing 1 replies (of 1 total)

 *  [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * (@optimizingmatters)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/site-optimizer-compatible-with-ew/#post-11687860)
 * Regarding Autoptimize: could be due to CSS or JS or Image optimization, try to
   identify which one by disabling (and re-enabling) CSS optimization and then JS
   optimization. once you know that you’ll have to look into which CSS- or JS-file
   to exclude from optimization to fix (probably Entrywizards). [AO’s FAQ](https://wordpress.org/plugins/autoptimize/#faq)
   has more info on troubleshooting and how to exclude.
 * And excluding one specific page can be done either with a couple of lines of 
   code, below example assuming you have have you entrywizard on `vroom66.com/vroom/
   entrywizard` :
 *     ```
       add_filter('autoptimize_filter_noptimize','vroom_noptimize',10,0);
       function vroom_noptimize() {
       	if (strpos($_SERVER['REQUEST_URI'],'vroom/entrywizard')!==false) {
       		return true;
       	} else {
       		return false;
       	}
       }
       ```
   
 * or [using the trick described here](https://blog.futtta.be/2018/06/19/quick-trick-to-disable-autoptimize-on-a-page/)
   🙂
 * hope this helps,
    frank (ao dev)

Viewing 1 replies (of 1 total)

The topic ‘Site Optimizer compatible with EW’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/entrywizard.svg)
 * [EntryWizard](https://wordpress.org/plugins/entrywizard/)
 * [Support Threads](https://wordpress.org/support/plugin/entrywizard/)
 * [Active Topics](https://wordpress.org/support/plugin/entrywizard/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/entrywizard/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/entrywizard/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Optimizing Matters](https://wordpress.org/support/users/optimizingmatters/)
 * Last activity: [6 years, 11 months ago](https://wordpress.org/support/topic/site-optimizer-compatible-with-ew/#post-11687860)
 * Status: not resolved