How to display star rating on collection page without the (#) next to it

Topic summary

A user seeks help removing the number (“#”) displayed next to star ratings on their Shopify collection page. They are using the Okendo review plugin.

Current Status:

  • One respondent cannot reproduce the issue, seeing no “#” symbol on the provided URL
  • Another suggests two potential solutions:
    1. Check the Okendo app settings for configuration options
    2. Hide the element using custom CSS code targeting .card .oke-sr-count with display: none;

Resolution: The issue remains unresolved. The original poster has not confirmed whether the problem persists or if either suggested solution worked.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hello,

Is someone able to assist me in removing the (#) next to the star rating?

I have the review plugin okendo.

Thank you so much. Ella.

URL: https://www.samiyaskincare.com.au/collections/bundles

Hi, I don’t see “#” Please double check on this

I believe that it should be possible to configure in app settings. Can’t tell without installing the app in my store.

Otherwise, it’s possible to hide this information with simple CSS – just add the following code to the Theme Settings-> Custom CSS:

.card .oke-sr-count {
  display: none;
}