Landmark titles and breadcrumbs with header builder

Hello! I use Ethos stack and after I applied custom header (with Header builder) landmark part of template disappeared. Now there is no category titles and no breadcrumbs. Could you please help me get it back?

Hello There,

Thanks for writing in! The landmark titles are part of the header. When using custom header, the landmark titles will disappear and get replaced for your custom header. I would recommend that you assign your custom header to a few of your pages and not as your global header so that all your archive pages such as category page will have a title.

Hope this helps.

But new header look is different.

Could you please describe what files in child theme should I change to add:

  1. Category titles
  2. Breadcrumbs in single post

I’ve found the solution:

  1. views/ethos/wp-single.php - for single posts
    I’ve added this:
<?php get_header(); ?>
<div class="x-container max width">
<div style="margin: 25px 0; font-size: 90%; "><?php x_breadcrumbs();?></div>
</div>
  1. views/ethos/wp-index.php - for archives
    I’ve added this:
<?php get_header(); ?>
<div class="x-container max width">
<div style="margin-top: 35px; float: right; font-size: 90%; text-align: right"><?php x_breadcrumbs();?></div>
<h1 style="margin-top: 20px; display: inline-block;"><?php single_term_title();?></h1>
</div>

Maybe it would be useful for someone.

Hello There,

We are just glad that you have figured it out a way to correct the said issue.
Thanks for letting us know!

All the best.