Just launched my new site and when adding products to the cat, it’s showing blank. Only thing i can see if the picture of the product and nothing else.
Hi @RRadd
Welcome to the community.
It is a bit difficult to suggest anything; maybe it is a theme, and you have white text on a white background. But that is just guessing.
So if you could share your store link, it would be easier to see what the issue?
This usually happens when the product card elements are hidden or not rendering correctly in the theme.
A few things to check:
• Make sure the product has a title, price, and description saved and not just images
• Go to Online Store > Themes > Customize, open the collection page, and confirm that product title and price are enabled in the product grid settings
• Check if a custom CSS or app is hiding text (very common if a theme was edited or an app was installed and removed)
• If you’re using a new or heavily customized theme, preview it in an incognito window to rule out cache issues
• Also confirm the products are set to Active and assigned to the correct sales channel
If you’re comfortable sharing the theme name, it’ll be easier to point you to the exact setting causing this.
I’ve run into this a few times while setting up stores, happy to help you narrow it down.
Hey @RRadd
Here’s a quick fix.
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
div#CartDrawer * {
color: black !important;
}
button.btn.cart__checkout {
background: #305F48 !important;
}
</style>
RESULT:
If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Hi,
Hope this will help
This usually happens when some cart blocks like title, price or quantity selector are disabled or removed in theme settings. Check Theme Customizer > Cart page or drawer and re-enable those blocks.
If the issue only happens in your published theme, previewing an unmodified version helps confirm if custom code or apps are hiding the cart details.

