• I went to edit my home page and went to the WP menu Appearance/Customize and when the WP customizer opens I do not have any menu items below the header of “you are customizing your website name header. There is a widget button which says I have 4 widgets but this page does not display them and also a Need help button which takes me to the theme page which I can not find any help on.

    Here is a picture of what I see.
    https://cematraining.com/customizer-pic/

    • This topic was modified 4 years, 3 months ago by joshgoodman.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello,
    I have the same problem since the wordpress 5.5 version.

    Thread Starter joshgoodman

    (@joshgoodman)

    Definitely a theme issue. I can look at other themes and do a “Live Preview” of other themes and can see the settings below the header but not in Frontech or parent theme Kyma.

    Only one solution at this moment : go back to wordpress 5.4.2.

    gertjan

    (@gertjanfikkertname)

    Same problem

    Hello,
    To fix this problem with wordpress 5.5, copy following code and paste into frontech theme function file :

    if( is_admin() ){
    	add_action( 'wp_default_scripts', 'wp_default_custom_scripts' );
    	function wp_default_custom_scripts( $scripts ){
    		$scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker.js", array( 'iris' ), false, 1 );
    		did_action( 'init' ) && $scripts->localize(
    			'wp-color-picker',
    			'wpColorPickerL10n',
    			array(
    				'clear'            => __( 'Clear' ),
    				'clearAriaLabel'   => __( 'Clear color' ),
    				'defaultString'    => __( 'Default' ),
    				'defaultAriaLabel' => __( 'Select default color' ),
    				'pick'             => __( 'Select Color' ),
    				'defaultLabel'     => __( 'Color value' ),
    			)
    		);
    	}
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Frontech home page not giving any options to customize Word Press customizer’ is closed to new replies.