• Hi All,

    I have this website that I am setting up and I can’t seem to get rid of the two home pages.

    https://gorskiconsulting.com.previewdns.com/

    One of the Home Pages is a static page that I setup, but the other is coming from the Posts page and I want to get rid of it.

    Any suggestions as to where I might be able to wipe this out?

    Thanks,

    Eugene

Viewing 3 replies - 1 through 3 (of 3 total)
  • edit functions.php of your theme;
    find:

    function twentyten_page_menu_args( $args ) {
    	$args['show_home'] = true;
    	return $args;
    }

    change this line:
    $args['show_home'] = true;
    to:
    $args['show_home'] = false;

    (untested)

    Thread Starter eliscio

    (@eliscio)

    Will test shortly…Thank you!

    Thread Starter eliscio

    (@eliscio)

    Well, maybe I didn’t test it so soon, but it worked so thank you for this information. Problem resolved!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can't get rid of double Home page in Menu’ is closed to new replies.