HEX
Server: LiteSpeed
System: Linux server165.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
User: thetcbtv (2335)
PHP: 8.1.34
Disabled: NONE
Upload Files
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(); ?>