Blog title is not showing

Hello Themeco support team.

I don’t know how to add the Title in blog section as in the other sections:

Could you please help me?

Thank you!

Best regards,

MIJABA.

Hey Mijaba,

Please install and activate the child theme and login through FTP then edit the functions.php then add this code:

// add blog title 
function add_blog_title() {
  if(is_home()) {
      ?>
      <header class="x-header-landmark x-container max width">
              <h1 class="h-landmark"><span>Le Blog</span></h1>
              <p class="p-landmark-sub"><span>Welcome to our little corner of the Internet. Kick your feet up and stay a while.</span></p>
      </header>
      <?php
  } else if ( is_archive() ) { ?>
      <header class="x-header-landmark x-container max width">
              <h1 class="h-landmark"><span><?php echo single_cat_title("", false); ?></span></h1>
              <p class="p-landmark-sub"><?php echo category_description(); ?></p>
      </header>
<?php }
}

add_action('x_after_view_global__slider-below', 'add_blog_title');

Hope this helps.

This works like a charm.

Thank you!

You are most welcome. :slight_smile:

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