Hi there,
Please update the previous code I provided to:
<?php
// =============================================================================
// VIEWS/ETHOS/CONTENT.PHP
// -----------------------------------------------------------------------------
// Standard post output for Ethos.
// =============================================================================
$is_index_featured_layout = get_post_meta( get_the_ID(), '_x_ethos_index_featured_post_layout', true ) == 'on' && ! is_single();
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( $is_index_featured_layout ) : ?>
<?php x_ethos_featured_index(); ?>
<?php else : ?>
<div class="x-hide-lg x-hide-md x-hide-xl"><?php x_get_view( 'ethos', '_content', 'post-header' ); ?></div>
<?php if ( has_post_thumbnail() ) : ?>
<div class="entry-featured">
<?php if ( ! is_single() ) : ?>
<?php x_ethos_featured_index(); ?>
<?php else : ?>
<?php x_featured_image(); ?>
<?php endif; ?>
</div>
<?php endif; ?>
<div class="entry-wrap">
<div class="x-hide-sm x-hide-xs"><?php x_get_view( 'ethos', '_content', 'post-header' ); ?></div>
<?php x_get_view( 'global', '_content' ); ?>
</div>
<?php endif; ?>
</article>
Hope this helps.