Skip to content

Instantly share code, notes, and snippets.

@engelen
Last active August 29, 2015 13:58
Show Gist options
  • Save engelen/10349760 to your computer and use it in GitHub Desktop.
Save engelen/10349760 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'cac/is_cac_screen', 'myplugin_wpml_is_cac_screen' );
function myplugin_wpml_is_cac_screen( $is_columns_screen ) {
if ( isset( $_GET['page'] ) && $_GET['page'] == 'wpml-string-translation/menu/string-translation.php' ) {
return true;
}
return $is_columns_screen;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment