Make h1 appear on tag and category pages

Hi there
I’m using integrity.
I’d like to make appear h1’s on tag and category pages.
I have already created put some text on archive titles in the form inside my admin but I cannot show them on my pages.
Is there any action to do this please ?
many thanks

Ok I’ve found a solution using this code to add both title + description

function add_category_description() {
    if(is_category()) {  ?>
    <div class="cat-desc">
        <div class="x-container max width"</div>
        <h1 class="tax-title"><?php echo single_cat_title(); ?></h1>
            <div class="tax-desc"><?php echo category_description(); ?></div>
        </div>
    </div>
    <?php
    }
}
add_action( 'x_after_view_integrity__landmark-header', 'add_category_description',99999 ); 

The problem now is I have two h1 titles on my tag and description pages.
I get h1 with “category archive” inside and a line which starts with “below you’ll find a list …”

  <header class="x-header-landmark x-container max width">
    <h1 class="h-landmark"><span>Category Archive</span></h1>
    <p class="p-landmark-sub"><span>Below you'll find a list of all posts that have been categorized as <strong>&ldquo;Museos de Paris&rdquo;</strong></span></p>
  </header>

Is it possible to remove them ?
many thanks

Ok … big monologue here guys … sorry.

I’ve finally found a solution for this editing _landmark-header.php

I cannot find a way to delete this post.

many thanks

Glad to hear that you have found the solution. :slight_smile:

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