Display WooCommerce Categories, Subcategories, and Products in Separate Lists

Final product image
What You’ll Be Creating

WooCommerce gives you a few options as to what you can display on your archive pages:

  • products
  • categories (on the main shop page) or subcategories (on category pages)
  • both products and categories.

When I’m setting up a store, I normally select the third option: products and categories/subcategories. This means visitors to my store can either select products right from the home page or refine their search by clicking through to a product category archive.

However, there’s one failing with this approach: It displays the categories/subcategories together, with no separation between the two. This means that if your product images have different dimensions from your product images, the layout can look a bit messy. Even if your images are the same size, if one of the lines in the archive page includes both categories and products, the absence of an ‘Add to Cart’ button for categories makes that row look untidy, as not all of its elements have the same dimensions.

In this tutorial I’ll show you how to display categories in a separate list before displaying products.

To do this, we’ll follow four steps:

  1. Identify the code WooCommerce uses to output categories and subcategories on archive pages.
  2. Create a plugin for our code.
  3. Write a function to put categories or subcategories before product listings.
  4. Style the output.

But before you start, you’ll need a WooCommerce installation with some products added, and product categories and subcategories set up.

What You’ll Need

To follow along, you’ll need:

  • A development installation of WordPress.
  • A code editor.
  • WooCommerce installed and activated.
  • Products added—I’ve imported the dummy product data that comes with WooCommerce; for details of how to do this, see this guide.
  • A WooCommerce-compatible theme activated—I’m using Storefront.

Before We Start: The Default Options

Let’s take a look at what WooCommerce gives us by default.

I’ve started by adding some images to my product categories and subcategories, as the WooCommerce dummy data doesn’t include those. I’ve simply used an image of one of the products from each category or subcategory, as you can see in the screenshot:

Product categories added in WordPress admin

Now let’s take a look at how WooCommerce displays the product categories and products in archive pages.

If you haven’t already, open the Customizer, select the WooCommerce tab, and click on Product Catalog

WooCommerce product catalog in Customizer

Under Shop page display, select Show categories & products, and under Category display, select Show subcategories & products.

Displaying categories and products in the Customizer

Click Publish to save your changes and visit your site’s shop page. Mine looks like this:

Shop page with categories and products

Because I have four categories and a grid of three images side by side, the first two products are shown alongside one of the categories.

I want to make my categories and subcategories more prominent, and simply present them separately from the product listings. So let’s do that.

Identifying the Code WooCommerce Uses to Output Categories and Products in Archives

The first step is to identify how WooCommerce outputs categories and subcategories. So let’s delve into the WooCommerce source code to find the relevant function.

The file WooCommerce uses to display archive pages is archive-product.php, which is in the templates folder.

Inside that file, you can find this code, which outputs the categories and products:

So there’s a woocommerce_product_subcategories() function which is outputting the categories or subcategories before running the loop which outputs the products. 

The function is pluggable, which means we could override it in our theme. Unfortunately that doesn’t quite work as WooCommerce has built-in styling for clearing items, which would appear at the beginning of a row with the default display. 

So instead of that, we’ll turn off display of categories and subcategories on our archive pages, so that just products are displayed. Then we’ll create a new function that outputs the product categories or subcategories, and hook it to the woocommerce_before_shop_loop action, making sure we use a high priority so that it fires after the functions which are already hooked to that action.

Note: Because WooCommerce adds clears to each third product listing, we can’t use the woocommerce_product_subcategories() function or an edited version of it to display the categories. This is because it will clear the third, sixth (and so on) category or product listed, even when we use this function to display categories separately. We could try to override that, but it’s simpler just to write our own function.

So let’s create a plugin which does that.

Creating the Plugin

In your wp-content/plugins directory, create a new folder and give it a unique name. I’m calling mine tutsplus-separate-products-categories-in-archives. Inside that, create a new file, again with a unique name. I’m using the same name: tutsplus-separate-products-categories-in-archives.php.

Open your file and add this code to it:

You might want to edit the author details as this is your plugin you’re writing. Save your file and activate the plugin via the WordPress admin.

Writing Our Function

Now let’s write the function. But before you start, turn off category listings in the admin screens. Open the Cusomizer, click the WooCommerce option, and click on Product Catalog. For each of the Shop Page Display and Default Category Display options, select Show products. Save your changes by clicking Publish.

Your shop page will now look something like this:

Shop page with no categories

In your plugin file, add this:

Now add this code inside the function:

Let’s take a look at what that function does:

  • It identifies the current queried object and defines its id as $parentid.
  • It uses get_terms() to identify terms with the currently queried item as their parent. If this is the main shop page, it will return top-level categories; if this is a category archive, it will return subcategories.
  • Then it checks if there are any terms, before opening a for each loop and a ul element.
  • For each term, it creates a li element, and then outputs the category image using woocommerce_subcatgeory_thumbnail(),  followed by the category name in a link to its archive.

Now save your file and refresh the main shop page. Mine looks like this:

Unstyled category listings

The categories are displayed, but they need some styling. Let’s do that next.

Styling the Category Listings

So that we can add styling, we need a stylesheet inside our plugin, which we’ll need to enqueue.

In your plugin folder, create a folder called css, and inside that, create a file called style.css.

Now, in your plugin file, add this above the function you’ve already created:

This correctly enqueues the stylesheet you’ve just created.

Now open your stylesheet and add the code below. WooCommerce uses mobile first styling, so that’s what we’ll be using too.

I’ve copied the exact widths and margins from the styling used by WooCommerce.

Now check your main shop page again. Here’s mine:

Final shop page

Here’s the Clothing category archive:

Final clothing archive page

And here’s how it looks on smaller screens:

Category listings on mobile

Summary

Product categories are a great feature of WooCommerce, but the way they’re displayed isn’t always ideal. In this tutorial, you’ve learned how to create a plugin that outputs product categories or subcategories separately from the product listings, and then you’ve styled your category listings.

You could use this code to output a list of categories or subcategories elsewhere on the page (for example below the products), by hooking the function to a different action hook within the WooCommerce template file.

If you currently run a shop that you’re looking to extend, or you’re looking for some additional plugins to study as it relates to WooCommerce, don’t hesitate to see what plugins are available on CodeCanyon.

The Best WooCommerce Plugins for 2021 on CodeCanyon

CodeCanyon offers the most flexible and feature-rich WooCommerce WordPress plugins on the market and will add another dimension of functionality to your online store that users are accustomed to.

Whether you need to implement custom fields and uploads, display multiple currencies, or offer memberships, the diverse WooCommerce plugins available on CodeCanyon can help you accomplish these tasks. 

In addition to all the high-quality WooCommerce plugins available, there are also thousands of other high-quality WordPress plugins on CodeCanyon that can help enhance your website. Take look through the extensive library of plugins and you will find all types of plugins including forum, media, and SEO plugins.

Take advantage of the massive library of high-quality WordPress plugins on CodeCanyon now!

Best Selling WooCommerce Plugins On CodeCanyon
Best selling WooCommerce plugins on CodeCanyon.

If you want some help picking the WooCommerce plugin that’s right for you, check out these other posts here on Envato Tuts+:

Leave a comment

Your email address will not be published.