• Resolved rakibkhan

    (@rakibkhan)


    Can anyone please tell me a working way to remove page title from this static home page only?

    https://onlinecontestfinder.com/

    I tried with hide_title value true method from custom field but it is not working. I just want to remove the title from the that home page not form other pages or posts.

    Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Try adding this to a custom CSS section – add via a plugin if your theme doesn’t have Custom CSS as an option:

    .home .single_page {
       display: none;
    }

    Thread Starter rakibkhan

    (@rakibkhan)

    Thank you very much. It worked charmingly.

    Thread Starter rakibkhan

    (@rakibkhan)

    Hello @WPuogi,

    Sorry for missing. According to you I wrote these code in custom css box. The day when I did that in the home page there had no article. Only was title named by Home. So I thought it worked.

    But today when was going to post content in home page, then I found that for your these custom css code all content including title disappeared.

    But I want to remove only Title named by “Home” not the full article. Can you please help me again?

    Hi again – sure – see if this works:

    .home h1.title {
        display: none;
    }

    Thread Starter rakibkhan

    (@rakibkhan)

    Yes now it is OK. Thank you again.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove page title from this theme? Tried with hide_title but not working’ is closed to new replies.