Skip to content

Instantly share code, notes, and snippets.

@bradp
Created October 24, 2012 17:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bradp/3947399 to your computer and use it in GitHub Desktop.
Save bradp/3947399 to your computer and use it in GitHub Desktop.
Hides the ePanel on any Elegant Themes, drop into mu-pluings in /wp-content/
<?php
/*
Plugin Name: Disable ePanel on Frontend
Description: Hides/removes the stupid Elegant Themes ePanel
Author: bradparbs
Author URI: http://bradparbs.com/
*/
function disable_epanel_on_frontpage(){
?><style>#et-control-panel{ display: none !important; }</style><?php
}
add_action('wp_head','disable_epanel_on_frontpage');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment