Viewing 5 replies - 1 through 5 (of 5 total)
  • sonnycool,

    It is always possible to revert back to the old version; you can find them all here. You can set those values in Performance to whatever you like, or disable the Performance module in the Feature Manager as well.

    Thread Starter sonnycool

    (@sonnycool)

    is a bit hard to off … cause all my user with admin roles on their own blog ….. is no way i can off them and they always can switch it on …
    thank i role back to old version 🙂
    thanks

    sonnycool,

    That does make it a bit more difficult; if you change your mind, it should be possible to remove the Performance module entirely with a bit of code.

    andrew

    (@andrewjtalcott)

    How would you remove the Performance module entirely with a bit of code? This plugin was one of my favorites, this new version is intrusive and not very friendly for wp multisite.

    andrew,

    Add this as a plugin, or into a plugin, that should do it:

    add_filter( 'aioseop_module_list', 'sfwd_remove_perf_module' );
    		function sfwd_remove_perf_module( $modules ) {
    			if ( is_array( $modules ) ) {
    				$keys = array_keys( $modules, 'performance' );
    				if ( !empty( $keys ) )
    					foreach( $keys as $key )
    						unset( $modules[$key] );
    			}
    			return $modules;
    		}
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘is that possible revert back old version ?’ is closed to new replies.