Reply To: How to remove page title on home only?

Homepage Community Forums Epik Theme Support How to remove page title on home only? Reply To: How to remove page title on home only?

#14698
Eric
Customer

    Are you ok with removing the title via CSS? If so I can help you with that. Do you have a link to your site? i can tell you exactly which part will need to be adjusted.

    The above suggestion will work, but you can also try some of the code from here – http://wpsites.net/web-design/remove-titles-specific-conditions/

    and this specifically –

    add_action( 'get_header', 'remove_titles_home_page' );
    function remove_titles_home_page() {
        if ( is_home() ) {
            remove_action( 'genesis_entry_header', 'genesis_do_post_title' );
        }
    }

    I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com