Hide Product Count from ShowTime theme

Topic summary

Goal: Hide the product count displayed at the top of collection pages in the ShowTime theme.

  • Initial advice suggested a built-in theme customization toggle, but the requester couldn’t find such an option in ShowTime.
  • The requester shared their store URL to enable tailored help.
  • Solution provided: add custom CSS to the theme’s core.css via Online Store > Edit Code.
  • CSS used: .#collection-toolbar-status span { display: none !important; } to hide the product count element on collection pages.
  • Outcome: The CSS fix worked as intended for the requester.

Status: Resolved with a custom CSS approach; no native theme setting confirmed for ShowTime in this thread.

Summarized with AI on December 28. AI used: gpt-5.

Hi,

Trying to stop product count from showing at the top of collections for the ShowTime theme.

I’ve come across solutions for other themes but none that were applicable.

Thank you

1 Like

Hi @Steamboat ,

Go to the customization and you have an option to hide the product count.

Thank you

1 Like

Hi, Thanks for taking the time to reply but I can’t see anywhere in the theme where that is an option?

There is an option to add custom css to the collection. Would that work with the right code?

I’ve spent quite a bit of time looking before and since you replied.

Any other help would be appreciated.

Thanks

Mark

Hi @Steamboat

Would you mind to share your store URL? Thanks!

Hi @Steamboat ,

Can you please provide me the store URL so that I can send you the css code?

Thank you

1 Like

Yes, certainly, here it is.

Thanks

https://steamboat.ie/

Hi @Steamboat

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Add This Css in your Edit Code > core.css File
.\#collection-toolbar-status span {
    display: none !important;
}

Please don’t hesitate to reach out if you need further help optimizing or customizing your store. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

Best Regards,
LuffyOnePiece

1 Like

Thank you very much, that worked perfectly.