Solved

[Dawn Theme] Remove review stars under the products

bankin
New Member
8 0 0

Hello there, can you help me with removing rating stars under all products and count of how many people reviewed? 

 

 

Accepted Solutions (2)

Ujjaval
Shopify Partner
1242 197 206

This is an accepted solution.

@bankin 
Put below code into theme .liquid file before closing</body> tag

 

<style>
.product-icon-list.vstar-star {
display: none !important;
}
</style>

 



View solution in original post

Ujjaval
Shopify Partner
1242 197 206

This is an accepted solution.

@bankin 

Can you add this css also

.collection-icon-list.vstar-star {
    display: none !important;
}

View solution in original post

Replies 5 (5)

Ujjaval
Shopify Partner
1242 197 206

This is an accepted solution.

@bankin 
Put below code into theme .liquid file before closing</body> tag

 

<style>
.product-icon-list.vstar-star {
display: none !important;
}
</style>

 



bankin
New Member
8 0 0

Only got rid of rating when you select specific product, still visible where you view all products. 

Ujjaval
Shopify Partner
1242 197 206

This is an accepted solution.

@bankin 

Can you add this css also

.collection-icon-list.vstar-star {
    display: none !important;
}
bankin
New Member
8 0 0

Thank you

Ujjaval
Shopify Partner
1242 197 206

Your welcome ! 😃