Removing Page Title On Landing Page

Viewing 6 posts - 1 through 6 (of 6 total)
  • #15601
    jordan8201
    Participant

    I apologize if this has been asked,but I couldn’t find a way to search topics in the forum.

    I have a page called HOME PAGE that I’m using for my landing page with the slider, but I need to remove the title “Home Page” from the Landing page. It is residing below the wide widget.

    Thanks!

    #15603
    Isonomia
    Participant

    It’s easy, try this:

    In admin menu -> pages, put the mouse hover your homepage, you can see at the bottom of the window an URL like “yoursite.com/wp-admin/post.php?post=NUM&action=edit”

    Take that NUM, that’s the ID of your page.

    Now go to Apperance -> Theme Options -> Layout, in the “Custom CSS” you need to write this (don’t miss any dot):

    .page-id-69 .entry-title {display: none;}

    if you want do the same with a post, you need to write this one:

    #post-175 .entry-title {display: none;}

    #15634
    rossjamesparker
    Participant

    Thanks, I used this trick today!

    #15656
    Daniel Tara
    Keymaster

    Hiding content is bad SEO practice. You can open template-landing-page.php and remove this code:

    <header class="entry-header">
    	<<?php pinboard_title_tag( 'post' ); ?> class="entry-title"><?php the_title(); ?></<?php pinboard_title_tag( 'post' ); ?>>
    </header><!-- .entry-header -->
    #15901
    jordan8201
    Participant

    Do I need to create a child theme in order to keep that from being lost when updating the theme?

    #15917
    craphead
    Participant

    Do I need to create a child theme in order to keep that from being lost when updating the theme?

    of course

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.