No title in template Blank, No Container | Header and Footer"

Hi, when choosing the Template “Blank, No Container | Header and Footer” the page titles are not there. They are enabled in the page settings, but not visible. Thanks for helping.

Hi @thegator,

Blank templates do not display the page title. However, you can add the title by adding some code to the child theme. Please install and activate the child theme and login through FTP then edit the functions.php then add this code:


function add_title() {
  if(is_singular('page')) { ?>
         <header class="entry-header mbm">
            <h1 class="entry-title"><?php the_title(); ?></h1>
          </header>
 <?php }
}
add_action( 'x_before_the_content_begin', 'add_title', 10 );

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.