Thanks for pointing me towards a possible solution. I’ve added a child theme x-child/framework/functions/ethos.php file to my site as a clone of the same file from the parent x theme. The only thing I modified was hardcoding the entry-parent href value like this:
<div class="entry-top-navigation">
<a href="http://courageouscaterpillar.com/adventures/" class="entry-parent" title="<?php $title; ?>"><i class="x-icon-th" data-x-icon=""></i></a>
The source of the runtime page looks like the following pointing back to the same page with entry-parent icon:
<div class="entry-top-navigation">
<a href="http://courageouscaterpillar.com/costa-rica/" class="entry-parent" title=""><i class="x-icon-th" data-x-icon=""></i></a>
One thing I’m noticing though is this isn’t the exact URL for the portfolio page. The actual URL is http://courageouscaterpillar.com/item/costa-rica/. Looks like the “item/” part was removed.
I’ve even tried hardcoding the code above setting the $link value:
if ( x_is_portfolio_item() ) {
$link = ‘http://courageouscaterpillar.com/adventures/';
} elseif ( x_is_product() ) {
$link = ‘http://courageouscaterpillar.com/adventures/';
}
The source of the runtime page still looks like the following pointing back to the same page with entry-parent icon:
<div class="entry-top-navigation">
<a href="http://courageouscaterpillar.com/costa-rica/" class="entry-parent" title=""><i class="x-icon-th" data-x-icon=""></i></a>
Any pointing in the right direction would be greatly appreciated!
Thanks.