Hey Nick ??
Thanks for reaching out!
It looks like product categories are being displayed below each product on the Shop
page, and you’d like to remove this, correct?
There is more than likely a setting within the current theme or another plugin (possibly a page builder plugin) that may be causing this.
However, you can hide this by using some custom CSS. Can you try adding the following CSS to Appearance → Customize → Additional CSS and see if this does the trick:
/* Hide product categories below products on shop page */
ul.products li.product .posted-in {
display: none;
}
When applying this CSS, it’s important to test the changes on mobile devices to ensure they render correctly and maintain responsiveness with your current theme.
If you’d like to learn more about CSS, I highly recommend using the?free tutorials at w3schools. Here, you can find the basics of?selectors?(how to target the right element on the page), and?properties?(how to change the element on the page).
Hope this helps!