File: //home/thetcbtv/wp-content/wp-content/themes/yourstore-theme/archive-product.php
<?php
// Simplified shop archive template
get_header();
?>
<main class="container" style="padding:24px 0">
<h1><?php woocommerce_page_title(); ?></h1>
<div class="products-grid" style="margin-top:12px">
<?php if (woocommerce_product_loop()) : ?>
<?php woocommerce_product_loop_start(); ?>
<?php if (wc_get_loop_prop('total')) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php wc_get_template_part('content', 'product'); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php woocommerce_product_loop_end(); ?>
<?php else : ?>
<?php do_action('woocommerce_no_products_found'); ?>
<?php endif; ?>
</div>
</main>
<?php get_footer(); ?>