Created
November 6, 2013 07:01
-
-
Save shazdeh/7332067 to your computer and use it in GitHub Desktop.
Disable the Builder frontpage editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function disable_frontend_builder() { | |
global $ThemifyBuilder; | |
if( ! is_admin() ) { | |
remove_action( 'wp_enqueue_scripts', array( $ThemifyBuilder, 'load_front_js_css' ), 10 ); | |
remove_action( 'wp_before_admin_bar_render', array( $ThemifyBuilder, 'builder_admin_bar_menu'), 1000 ); | |
} | |
} | |
add_action( 'init', 'disable_frontend_builder' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment