Update: I put the template php file into my child theme, named the file “template-shop-page” (without quotations) and modified the code to this:
<?php
/**
* Template Name: Shop Page
*
* The Shop Page Template.
*
*/
?>
<?php get_header(); ?>
<div id="content-wrap">
<div class="main-sidebar-container container">
<div class="row">
<?php get_sidebar( 'shop-first' ); ?>
<?php get_sidebar( 'shop-second' ); ?>
<?php get_sidebar( 'shop-third' ); ?>
<?php get_sidebar( 'shop-fourth' ); ?>
<?php get_sidebar( 'shop-last' ); ?>
</div>
</div>
<?php echo df_social_account(); ?>
<?php echo df_miscellaneous(); ?>
</div>
<?php get_footer(); ?>
I’m no longer having the duplicate issue but now I’m having a different issue. The side bar that normally appears on the right side of the page is now on the left side of the page and when I go into customize mode, under widgets I don’t have all those other sections to work with like I had with the first template.
Solved one issue but caused another. Anyone kind enough to lend a hand with this? Or at least point me in the right direction of what to do?