add_action( 'customize_register', function( $wp_customize ) { $wp_customize->remove_section( 'custom_css' ); }, 15 );
// Add new settings to the Customizer Total panels. function myprefix_customizer_settings( $sections ) { // Add new setting under the…
The following snippet can be used to remove all the Google Font options from the Customizer to slim things down.…
// Add custom font to font settings // This is for NON-Google Fonts // For google fonts see here: http://total.wpexplorer.com/docs/snippets/add-new-google-fonts/…
// Remove all Google font options from the Customizer // Typography settings but keep them for Total VC modules function…
add_filter( 'wpex_typography_settings', function( $settings ) { // Remove logo typography (not needed if using an image) unset( $settings['logo'] ); //…