Hi There,
That is another functionality that is on our roadmap, to add all archive pages, including categories and tag pages on the assignment area of the builder. Unfortunately for now, to set Pro header on category pages, we have to set it as global header on the assignment area.
For the meantime, please try adding this custom code to add the title back on the category pages:
add_action('x_before_view_global__index', 'x_classic_header', 99);
function x_classic_header() {
$disable_page_title = get_post_meta( get_the_ID(), '_x_entry_disable_page_title', true );
$disable_filters = get_post_meta( get_the_ID(), '_x_portfolio_disable_filtering', true );
if ( is_category() || x_is_portfolio_category() ) :
$meta = x_get_taxonomy_meta();
$title = ( $meta['archive-title'] != '' ) ? $meta['archive-title'] : __( 'Category Archive', '__x__' );
$subtitle = ( $meta['archive-subtitle'] != '' ) ? $meta['archive-subtitle'] : __( "Below you'll find a list of all posts that have been categorized as ", '__x__' ) . '<strong>“' . single_cat_title( '', false ) . '”</strong>';
?>
<header class="x-header-landmark x-container max width">
<h1 class="h-landmark"><span><?php echo $title ?></span></h1>
<p class="p-landmark-sub"><span><?php echo $subtitle ?></span></p>
</header>
<?php endif;
}
Hope this helps.