Hi, I need help getting rid of the product descriptions on the collection page. So it only shows the name, rating and price. Thanks
Topic summary
A user needed to remove product descriptions from their collection page, wanting to display only product names, ratings, and prices.
The solution provided involves adding custom CSS code to hide the description text:
- Navigate to Shopify admin → Online Store → Themes → Edit code
- Open the CSS file (base.css, style.css, or theme.css) in the Assets folder
- Add the CSS rule
.product-card_details-wrapper p { display: none; }at the bottom - Save the changes
The issue was successfully resolved, with the user confirming the solution worked.
1 Like
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product-card_details-wrapper p {
display: none;
}
- And Save.
- Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
Thankyou!!
1 Like

