I’m trying to change the layout of the Portfolio pages to match the style of Template 4 (No Container | Header, Footer).
I’ve tried changing the template-layout-portfolio.php in the child theme root to use:
x_get_view( x_get_stack(), 'template', 'blank-4' );
And also edited template-layout-portfolio.php in views/integrity/ to use the code from template-blank-4.php
get_header();
?>
<div class="x-main full" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php x_get_view( 'global', '_content', 'the-content' ); ?>
</article>
<?php endwhile; ?>
</div>
<?php get_footer(); ?>
Neither is working, and the portfolio pages continue to have a sidebar and breadcrumbs. What am I missing?
