Change the theme customizer
-
Hi, I want to change two things in the theme customizer. See the image below to clarify this requirement
https://drive.google.com/open?id=1Q2EC9VvT8ja16b4TL_yzouh27mylnRKK
1. The button in the customizer has a standard “light blue” color of WordPress. This color is used in other buttons, like (tutorial, welcome message and others). It’s there a way to change this default color to a custom one, in all WordPress?
2. I need to remove this section (“You are customizing”), see image. I have done this before for widgets menu and active theme using the code below , however, I don’t know how to do that for that section/panel. Please help me with this.
function mytheme_customize_app( $wp_customize ) {
$wp_customize->remove_panel ( ‘themes’ );
$wp_customize->remove_control( ‘active_theme’ );
$wp_customize->remove_panel ( ‘widgets’);
}
add_action( ‘customize_register’, ‘mytheme_customize_app’,50 );
The topic ‘Change the theme customizer’ is closed to new replies.