Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasplevy/927464ac3f8317d3e5f1a68d09c99357 to your computer and use it in GitHub Desktop.
Save thomasplevy/927464ac3f8317d3e5f1a68d09c99357 to your computer and use it in GitHub Desktop.
<?php // don't copy this line to your functions.php file!
/**
* Temporary fix for admin menu conflict with the Email Subscribers & Newsletters plugin
*/
function my_lifterlms_menu_fix() {
if ( class_exists( 'es_cls_registerhook' ) && method_exists( 'es_cls_registerhook', 'es_adminmenu' ) ) {
es_cls_registerhook::es_adminmenu();
}
}
add_action( 'admin_menu', 'my_lifterlms_menu_fix', 999999, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment