• Thank you for this theme, am glad to use it for my personal website. Please my little problem is; i want to display the title on the header image on only the home page, the remaining pages should be blank or empty. kindly help out. thank you once again

Viewing 11 replies - 1 through 11 (of 11 total)
  • Tim

    (@touwerkerk)

    If i’m right the same question has been asked before:

    Kathryn gave this solution:
    “adding this to your custom CSS will remove the title in the header on the single post view:

    .single-post .entry-header .entry-title {
    display: none;
    }
    Let me know how it goes.”

    Thread Starter Ajobiah Ackah

    (@ajobiah)

    thank you for your time but the code didn’t work. please am i suppose to do something on the header.php after adding the style on my custom CSS??

    I’ll appreciate it if you can link me to the previous post.
    thanks again

    Can you post a link to your website?

    ajobiah – the code above will hide titles on single posts. It doesn’t affect static pages, though. If you want to hide the title on pages as well as single posts, you’d use this CSS instead of the above:

    .single-post .entry-header .entry-title, .page .entry-header .entry-title {
       display: none;
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten when the theme is updated.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

    Thread Starter Ajobiah Ackah

    (@ajobiah)

    @kathryn and Stephen; thank you for your effort but it seems you don’t get me. below is the screen shot of the page;

    https://crabbe-debordes.com/wp-content/uploads/2014/08/screen-shot.jpg

    i want the name: Grand Master Richard Crabbe De-bordes on the picture appear only on the first page (static page) not post page.

    @kathryn; thanks for the code but why is it not working

    Thanks for clarifying.

    It sounds like you’re referring to the site title, not the post or page title, is that right?

    You can hide the site title on all pages except the homepage by adding this to your custom CSS or child theme:

    .page .site-title {
    	display: none;
    }
    
    .home .site-title {
    	display: block;
    }

    Let me know if that does the trick.

    Post titles and metatdata like the author name in your blog will still be displayed.

    Hi,

    I have a similar problem with the permalink-button showing on the front page. I tried to change the text in the button, but I couldn’t find the code in any of the php-files.

    Because I was unsuccesful I tried to hide the button with custom CSS

    .page .more-link {
    	display: none;
    }

    This doesn’t do the trick. How do you change the text OR hide the Read-buttons on the first page?

    This is my site: https://www.kehonrakentamo.fi

    How do you change the text OR hide the Read-buttons on the first page?

    I don’t see a hidden “read more” link on your homepage, and a “permalink” isn’t the same thing. Could you please clarify which element you’re trying to hide?

    Are trying to change the theme language’s to something other than English?

    It would be great if you could you please start your own thread so I can help you there, as your questions are unrelated to the others in this thread. Thanks!

    markuskosonen – ah, I see that you’ve already posted a new thread here: https://www.ads-software.com/support/topic/change-read-text-or-hide-front-page-button-after-posts

    Could you please answer my questions there so I can better help you? Thanks.

    Thread Starter Ajobiah Ackah

    (@ajobiah)

    @kathryn; thank you very much for your support. It work perfectly, God bless you.

    ajobiah – you’re very welcome, glad that accomplished what you wanted.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Display title on only home page’ is closed to new replies.