Remove Entry Title Over Essence Pro Hero Image

This tutorial provides 2 ways to remove the entry header elements including the entry title & entry meta from Essence Pro.

You can use the following CSS rule in the Essence Pro child themes style.css file to remove all the titles which display over the hero images on all page/post types :

h2.hero-title,
.hero-page-title h1 {
    display: none;
}

Or the following CSS which also removes the entry-meta.

h2.hero-title,
.hero-page-title h1,
.hero-page-title .entry-header {
    display: none;
}

Alternatively, you can use PHP with the correct functions to target specific page/post types like this :

Another option is to add the above actions to specific template files so the function executes when a specific template loads using the WordPress Template Hierarchy.

You’ll find all the theme specific custom functions for entry titles in essence-pro > lib > title-functions.php.

Related Code Snippets

Was This Tutorial Helpful?

Free

$0

Access only to all free tutorials per month.



Monthly

$75

Access to 10 premium tutorials per month.


Tutorial Request


Includes code guarantee and coding support.

Yearly

$500

Access to 15 premium tutorials per month.


Monthly Tutorial Request


Includes code guarantee and priority coding support.