I have my site set to 4 columns for products. For one product category, I have 3 subcategories. The way it is showing (actual link in private), it’s starting the product list on the same line as the category line, like so (C is a category, P is a product):
C | C | C | P
P | P | P | P
and so on.
I want a break after the 3 categories so it’s displayed like this:
C | C | C
P | P | P | P
and so on.
I can’t find any actual help on the web – all the tutorials given are old and break the site.
I almost got it but could use a little help figuring something put.
In archive-product.php I’ve added <hr> after
<?php woocommerce_product_subcategories(); ?>
But it outputs like so:
C | C | C
————- (hr)
P
P | P | P | P
and so on
The single product below the subcategories is where I’m having issues. So I’m thinking the hr isn’t going to work since it’s going to break that row to start a new 4 column row and I’m back to square one.
Hi,
Enfold doesn’t have any archive-product.php. Can you give us admin access? the category page seems different than the demo: http://kriesi.at/themes/enfold-2017/product-category/graphics/
Best regards,
Nikko
It’s a woocommerce template page. I’ve asked on their forums too. Just hoping someone, somewhere knows a fix for this.
That demo doesn’t have any subcategories so there’s no way to compare. Do you have a demo page that utilizes the option for displaying both subcategories and products?
I’m kind of working this out in a different way by making a Page for the category and using Masonry. It’s not perfect, but it works.