Hi, i’m trying to hide this from my website in the collection page
i use prestige theme 5.4 and judge.me as app.
i can’t seems to find a solution.
any idea?
Hi, i’m trying to hide this from my website in the collection page
i use prestige theme 5.4 and judge.me as app.
i can’t seems to find a solution.
any idea?
Hi @roberta84 ,
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.
sure, https://lamape.eu/
Hi @roberta84 ,
Is this the final result you want ?
Desktop:
Mobile screen:
You can follow these steps:
Step 1: Please navigate to Online store > themes > edit code and find the theme.css file
Step 2: Insert below code at the end file and Save theme
.CollectionMain .ProductItem__Rating {
display: none
}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you
![]()
nope, it doesnt work, and this will hide the review totally. I would like to be shown when they are. There should be a variable that says when are 0 review, hide the block.
Hi @roberta84 ,
Is this what you wanted?
Try this one
.CollectionMain .ProductItem__Rating:has([aria-label="0 su 5 stelle"]) {
display: none
}
Edit. the code works if i go into the collection.
how do i target the featured collection on the homepage?
the changes are live.
Hi @roberta84 ,
It only affects the “Collection list” section. If you want to hide more areas, let me know so I can provide additional code for you.
the inside of the collection.
not the featured collection on the homepage as i said before.
if u go on the homepage https://lamape.eu/ u can still see it.
Hi @roberta84 ,
You need to add additional code. Here are:
.CollectionMain .ProductItem__Rating:has([aria-label="0 su 5 stelle"]),
.ProductList .ProductItem__Rating:has([aria-label="0 su 5 stelle"]) {
display: none
}
it works, thank you very much!