Cant find the product-category page template

Can’t find the template below in WordPress “Pages”:
https://rimrubber.com/product-category/rim-size/21-inch/

Secondly, I’d like to make it look like the rest of my pages on this site, how can I go about this?

Paul

Hello Paul,

The product archive page and your shop is using the same template.

The pages were using the file woocommerce.php which contains only this:

<?php

// =============================================================================
// VIEWS/RENEW/WOOCOMMERCE.PHP
// -----------------------------------------------------------------------------
// WooCommerce page output for Renew.
// =============================================================================

get_header();

?>

  <div class="x-container max width offset">
    <div class="<?php x_main_content_class(); ?>" role="main">

      <?php woocommerce_content(); ?>

    </div>

    <?php get_sidebar(); ?>

  </div>

<?php get_footer(); ?>

The rest of the page contents were dynamically generated by WooCommerce by the way.

Hope this helps.

ok, how do I apply my visual style to all the other pages to look consistent?

Hello Paul,

Your styling is inconsistent because of your header. Please edit your headers and make sure that the header assigned to this page: https://rimrubber.com/product-category/rim-size/ is global so that it will also be displayed on this page: https://rimrubber.com/product-category/rim-size/21-inch/

Hope this makes sense.

that did the trick, thanks!

Glad we could help.

Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.