• Hello,

    I would like to disable the product reviews in the product archive. I only would like to have the reviews, when the single product is displayed.
    Is there a CSS Code I can add?

    Best Regards
    Tatennis

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    Use the below CSS code to achieve it –

    .woocommerce ul.products li.product.has-rating .product-inner:hover .inner .price, .woocommerce ul.products li.product.has-rating .product-inner .inner .price {
        -moz-opacity: 1;
        -webkit-opacity: 1;
        opacity: 1;
        visibility: visible;
    }
    .woocommerce ul.products li.product.has-rating li.inner .star-rating {
        display: none;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Disable Reviews in the product archive’ is closed to new replies.