Rating: 3 stars
When the plugin’s Concatenate JavaScript function is checked, it will interfere with WP’s visual editor. Rendering the visual editor invisible. Disabling this function will enable you to use the WP Visual Editor again.
]]>Rating: 5 stars
self explanatory
]]>Rating: 5 stars
Without mentioning the need for CDN, Cache, …, Page Optimize (for aggregating CSS) with Jetpack Boost (for deferring JS) gave me the best results for free. It does the job in simple way. I summarize my experience with this plugin and similars on: https://mohamadkarbi.com/why-i-host-with-wordpress/
]]>Rating: 1 star
Integrated w/ native wp installation, just unistall & go look for something else.
]]>Rating: 1 star
Please add the code below in page_optimize_bail()
.
if( is_admin() ){
return true;
}
if( class_exists('\Elementor\Plugin') &&
( ( isset($_REQUEST['action']) && $_REQUEST['action'] === 'elementor' ) || isset( $_REQUEST['elementor-preview'] ) ) ){
return true;
}
]]>