Hello @poyser7,
Thanks for the very detailed post information.
Please be advised that the portfolio item titles is being displayed in the landmark header which is page of the site’s header. Since you have created a custom header, the landmark header no longer displays because it is being replaced with your custom header.
I would suggest that you add a portfolio item title in your content instead. This is the easiest way of displaying the portfolio item titles.
If you have several portfolio items and editing one by one is not an option, then you will need to modify the content-portfolio file template. To do that, since you have your child theme active and ready, please follow these steps below:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// VIEWS/ETHOS/CONTENT-PORTFOLIO.PHP
// -----------------------------------------------------------------------------
// Portfolio post output for Ethos.
// =============================================================================
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php x_ethos_entry_top_navigation(); ?>
<div class="entry-featured">
<?php x_portfolio_item_featured_content(); ?>
</div>
<div class="entry-wrap cf">
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
<div class="entry-extra">
<?php x_portfolio_item_project_link(); ?>
<?php x_portfolio_item_tags(); ?>
<?php x_portfolio_item_social(); ?>
</div>
</div>
</article>
3] Save the file named as content-portfolio.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/pro-child/framework/views/ethos
You will need to create the folder path since it does not exist in your child theme yet.
Hope this helps. Kindly let us know.