• Hi. Do you think it is possible to delete a home button through any widget or plugin? I just don’t want it displayed. Instead I wanna be clicking on a logo in order to get back home.
    I have plenty of pages and HOME really stands out of the crowd in terms of structure of pages.


    OR

    Is there anyway built in to rename it?

    Thanks to all!

Viewing 3 replies - 1 through 3 (of 3 total)
  • delete a home button through any widget or plugin?

    unlikely –

    please give some information:

    what theme are you using?

    link to your site?

    Thread Starter maxteeden

    (@maxteeden)

    Hi. just basic 2011 theme. sorry no url – on my localhost/ so far.

    Do not edit the Twenty Eleven theme. It is the default WordPress 3.2 theme and having access to an unedited version of the theme is vital when dealing with a range of site issues.

    For this reason, it is recommended that you consider creating a child theme for your customisations. Once your child theme is active, we should be able to help with the customisation.


    after you have done the above,

    add something like this to functions.php of your child theme:

    add_action( 'after_setup_theme', 'twentyeleven_child_theme_setup' );
    
    function twentyeleven_child_theme_setup() {
    remove_filter( 'excerpt_length', 'twentyeleven_excerpt_length' );
    add_filter( 'wp_page_menu_args', 'twentyelevenchild_page_menu_args' );
    }
    
    /**
     * Get our wp_nav_menu() fallback, wp_page_menu(), to show a home link.
     */
    function twentyelevenchild_page_menu_args( $args ) {
    	$args['show_home'] = 'Start';
    	return $args;
    }

    this $args['show_home'] = 'Start'; changes the ‘Home’ button to ‘Start’;
    this $args['show_home'] = false; would remove it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Delete home button’ is closed to new replies.