Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
// Enable White Label
	if( false != get_theme_mod( 'dh_white_label_switch' ) ) {
		add_filter( 'gettext', 'dh_white_label', 20, 3 );
		function dh_white_label( $translated_text, $text, $domain ) {
			$dh_white_label_text = get_option('dh_white_label_text','Extender');
			//$dh_white_label_text = ucfirst($dh_white_label_text);
			switch ( $translated_text ) {
				case 'Divi Hacks' :
					$translated_text = __( 'Divi ' . $dh_white_label_text , 'Divi Hacks' );
					break;
				case 'Hacks Customizer' :
					$translated_text = __( $dh_white_label_text . ' Customizer', 'Divi Hacks' );
					break;
			}
			return $translated_text;
		}
	}
	function dh_white_label_customizer($wp_customize) {
		$wp_customize->add_section('dh_white_label_options', array(    
		'priority' => 100,
		'title' => __('White Label', 'Divi Hacks' ),
		'panel'    => 'divi_hack_options',
		));
			$wp_customize->add_setting('dh_white_label_switch', array(
			'default' => false,
			'type'        => 'theme_mod',
			'capability'  => 'edit_theme_options',
			));
			$wp_customize->add_control('dh_white_label_switch', array(
			'label' => __('Enable White Label'),
			'description' => __('Replace the word \'Hacks\' with any other word. This will affect the strings \'Divi Hacks\' & \'Hacks Customizer\''),
			'section' => 'dh_white_label_options',
			'type' => 'checkbox',
			'settings' => 'dh_white_label_switch'
			));
			$wp_custo