Viewing 15 replies - 1 through 15 (of 15 total)
  • same question here! Please help!

    I wondered this too. please elaborate

    Hi awkuward,

    I tried using this code as provided in the link:

    body.blog #main-core{
    display:none;
    }

    There were a couple of issues:
    1. On the blogpage it removed the actual posts, but the title “BLOG” was still visible at the top of the page.

    I want the “BLOG” title to be removed / changed to another title from the blogpage (https://www.marcfauster.at/aktivurlaubsteiermark/?page_id=69)

    Yes – same question here. I want to keep the blog, just call it ‘NEWS’

    https://www.amidamandala.com

    Please try this code in custom css file. Let me know if it helps you

    body.blog #main-core {
    display: none;
    }

    Hi awkuward, that code removes the actual posts from the blog – creating a blank page, which still has the title blog at the top.

    What the OP and I would like to do, is keep the posts – but not have the word ‘BLOG’ at the top of the page.

    This is my BLOG page – https://www.amidamandala.com/?page_id=35 but I’d like it to say ‘News’ at the top, not ‘blog’

    Thanks

    thanks kaspalita – I want to change the same!

    mfauster

    (@mfauster)

    still not resolved… ?? Please help!

    In the wordpress customisation menu under “static front page” I have front page set as “home” and posts page set as “news”. The theme seems to override this setting and make the title “blog”.

    I can’t see where the word “blog” is being picked up from. It is not a page title and it is not hard coded into the template. It may be implied by reasoning somewhere in the code, but I don’t see it.

    One option would be CSS that stops the title showing on that one page only.

    OK, here is how to remove the word “Blog” from the top of the posts page.

    Add this to the custom CSS:

    body.blog #intro{
    display:none;
    }

    This does not seem to affect anything else.

    However, I can’t seem to add a new title manually to the page entitled News. Everything gets overridden by the posts. I will need to look into this.

    If the above CSS causes any conflicting problems let me know and I will see what I can do.

    To add the title “News

    Open index.php which in my installation was here:
    /htdocs/wp-content/themes/minamaze/index.php

    Locate this line:
    <?php if( have_posts() ): ?>

    Directly above it paste this:

    <?php if (is_home()) { ?>
    <div><h1 class="page-title"><span>NEWS</span></h1></div>
    <?php } ?>

    Save or upload the new index.php file.

    Issues with this:

    You won’t get the red line under the first letter of the new H1 title.
    It will be overwritten by the next theme update – may be implementable using a child theme, but I have not got to this stage yet.

    I hope others find this useful.

    Hey, Kaspalita…

    How did you make your posts appear on your News/Blog page? I have been trying to do the same thing for weeks, and it doesn’t work. I have a site https://www.cmhtechnology.com, and like you I created a separate blog/news page called “Chris’ Blog”. Then I drafted a post, and set the category, but the post will not appear on the “Chris’ Blog” page. I only want the posts to appear on this page.

    I just wanted to add that gordonhudsonnu’s code to remove “BLOG” from the top of the blogs post page worked. Thank you.

    cholmes28 – To get your blog posts to be displayed on a specific page other than the home page go to the settings link in WP, click “Reading” then one option is “Posts Page”. Select the page you want the blog posts to go to. You can create a blank page just for blog posts.

    And/Or

    If the above doesn’t work try going to Appearance, then header, then static front page. Their you will see the option to set a static front page and a blog post page. Hope this helps.

    @gordonhudsonnu: thank you so much for clearing that up… Seems to be doing the job!

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘How to change the title "Blog" on the Blog page’ is closed to new replies.