Css14
Css14

Reputation: 25

Remove product title in Display Product page

I'm using WordPress + WooCommerce and I'd like to remove the product title in the display product page. In particular I'd like to show the product thumbnail only. However, the product title should be visible in the single product page.

Suggestions? Is it possible? Thank you in advance!

Upvotes: 2

Views: 4456

Answers (2)

Md. Mrinal Haque
Md. Mrinal Haque

Reputation: 9

According to the latest WooCommerce version, following CSS hide product title in archive page

ul.products h2.woocommerce-loop-product__title {
    display: none;
}

Upvotes: 1

Howli
Howli

Reputation: 12469

Adding

ul.products h3 
{
    display: none;
}

to the style.css on your website should hide the title of the product, but not on the single product page.

Upvotes: 1

Related Questions