Okay
  Public Ticket #2088318
Theme home page
Closed

Comments

  •  1
    Souvik started the conversation

    Again and again my home page is charged with your 'home' demo contant! What i do now? I changed it oon setting~ Reding~ static page~ my choice Page ( i use your demo- 4), But again and again it changed.

  •  2,570
    Kevin replied

    Hi Souvik  !

    Add this code to the file function.php (Appearance-> Editor-> function.php) for the setting homepage

    $homepage = get_page_by_title('Home');
    if (isset($homepage) && $homepage-> ID) {
    update_option('show_on_front', 'page');
    update_option('page_on_front', $homepage->ID);
    }

    with ('Home') and the name of the page you want to install as the homepage, change it

    thank you

  •  1
    Souvik replied

    I use demo-4 and the name of my home page is 'home-4'. If i changed the name to 'home' can this perfectly work? I don't use your css code, can this work? I deleted the default 'home' page.

  •  2,570
    Kevin replied

    Hi Souvik !

    If you want to use the home as a home page, edit its name with what I suggested, this name is set while you create the page.

    thank you