• Resolved monns31

    (@monns31)


    Hi there!

    I want to remove the reviews count shown in the product page, the “(1 customer review)” thing.

    Could anyone help, please ?

    Thanks in advance ??

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support abwaita a11n

    (@abwaita)

    Hi @monns31,

    Since WooCommerce doesn’t come with such a display of reviews, it is likely that your theme or one of your plugins is adding that section.

    You can hide it using the following CSS ( you can add via Customizer → Additional CSS)

    a.woocommerce-review-link {
        display: none !important;
    }

    I hope this helps.
    Thanks.

    Thread Starter monns31

    (@monns31)

    That worked!
    Thank you so much, you’re a legend!

    May I also ask what CSS can I use to hide star rating but only on the product page grid under the product itself instead of hiding them from the whole site?
    I’m using this one now but it hides the star rating everywhere.

    .star-rating { display: none !important; }

    Thank you!

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    I’m glad to know that my colleague’s response was very helpful. ??

    May I also ask what CSS can I use to hide star rating but only on the product page grid under the product itself instead of hiding them from the whole site?

    This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following codes:

    .single-product .woocommerce-tabs .star-rating {
        display: none !important;
    }

    (Optionally) The code provided below will prevent the customer from adding star review to your products:
    ?

    /* This code will not let the customer add star rating to any of your products */
    .single-product .woocommerce-tabs .comment-form-rating {
        display: none;
    }?
    

    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)

    I hope that helps!

    laceyrod

    (@laceyrod)

    Automattic Happiness Engineer

    Hi there,

    Since we haven’t heard back from you, and this thread has been inactive for a bit, I’m going to mark it as Resolved now for the overall health of the forums. Please feel free to open a new one if you have any further questions.

    Cheers!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide reviews number on product page’ is closed to new replies.