Support » Theme: Enough » [Theme: Enough] Changing HOME to something else

Viewing 2 replies - 1 through 2 (of 2 total)
  • The navigation system is most likely controlled using the Custom Menus.

    http://codex.wordpress.org/Appearance_Menus_SubPanel

    Theme Author nobita

    (@nobita)

    Hi hallurg

    Please open customize panel,
    select tha checkbox where sitetitle & tagline/ display header text

    hide header text then show home link.

    This home link is fallback link.

    How to change this below.

    Please open functions.php
    line:349

    if ( 'blank' == get_theme_mod('header_textcolor') ){
    			add_filter( 'wp_page_menu_args', 'enough_page_menu_args' );
    		}

    Allways show home

    //if ( 'blank' == get_theme_mod('header_textcolor') ){
    			add_filter( 'wp_page_menu_args', 'enough_page_menu_args' );
    		//}

    No needs home link

    if ( 'blank' == get_theme_mod('header_textcolor') ){
    			//add_filter( 'wp_page_menu_args', 'enough_page_menu_args' );
    		}

    Sorry poor at english.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Enough] Changing HOME to something else’ is closed to new replies.