• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Eliminate the Page Name on Landing Page – AgentPress 2.0 Theme

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Eliminate the Page Name on Landing Page – AgentPress 2.0 Theme

This topic is: not resolved

Tagged: Agentpress, agentpress 2, landing page

  • This topic has 3 replies, 3 voices, and was last updated 12 years, 6 months ago by Serenity.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • October 31, 2013 at 9:33 pm #70237
    charlottehousehunter
    Member

    I am trying to create a landing page with my AgentPress 2.0. The problem I am having is that the page name is appearing at the top of the landing page. How can I remove the page name from displaying on the landing page?

    http://www.charlottehousehunter.com/demo-landing-page/
    November 1, 2013 at 12:51 am #70255
    nutsandbolts
    Member

    Have you tried the Genesis Title Toggle plugin? It puts a checkbox on every post and page to allow you to hide the title if you want to.


    Andrea Whitmer, Owner/Developer, Nuts and Bolts Media
    I provide development and training services for designers • Find me on Twitter and Google+

    November 1, 2013 at 7:23 am #70283
    charlottehousehunter
    Member

    Nope...but I will now. That's why this forum ROCKS! Thank you.

    November 12, 2013 at 7:20 pm #72601
    Serenity
    Member

    <?php
    //* Do NOT include the opening php tag

    //* ALL EXAMPLES ON THIS PAGE USE THE NEW HTML5 METHOD

    //* Remove page titles site wide (posts & pages) (requires HTML5 theme support)
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );

    //* Remove page title for a specific page (requires HTML5 theme support)
    //* Change '28' to your page id
    add_action( 'get_header', 'child_remove_page_titles' );
    function child_remove_page_titles() {
    if ( is_page( 28 ) ) {
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }
    }

    //* Remove page title for multiple pages (requires HTML5 theme support)
    //* Change '3645' and '4953' to match your needs
    add_action( 'get_header', 'child_remove_page_titles' );
    function child_remove_page_titles() {
    $pages = array( 3645,4953 );
    if ( is_page( $pages ) ) {
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }
    }

    //* Remove page titles from all single posts & pages (requires HTML5 theme support)
    add_action( 'get_header', 'child_remove_titles' );
    function child_remove_titles() {
    if ( is_singular() ){
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }
    }

    //* Remove page titles from specific posts (requires HTML5 theme support)
    add_action( 'get_header', 'child_remove_post_titles' );
    function child_remove_post_titles() {
    $pages = array( 4953,4648 );
    if ( is_single( $pages ) ) {
    remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
    }
    }


    “ First, solve the problem. Then, write the code. ”

  • Author
    Posts
Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble