Be Yours Theme Review Stars

Solved

Be Yours Theme Review Stars

PeterB
Tourist
10 0 2

Hey,

Im currently working on a website redesign using Be Yours theme and Im using the Air Product Reviews app

Does anybody know how to remove the Star Reviews from in the theme on the product grid and product pages.

Also how to use the review stars from the Air Reviews to show on the product grid. I have got it on the product pages.

A preview is here: https://7cv1mgj6eopkarxy-25888764.shopifypreview.com

Accepted Solution (1)

Moeed
Shopify Partner
7375 1996 2438

This is an accepted solution.

Hey @PeterB 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.card-information__wrapper .rating {
    display: none !important;
}
.product__info-container .rating {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1744614549781.pngMoeed_1-1744614579011.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 8 (8)

suyash1
Shopify Partner
10872 1345 1719

@PeterB do you want to remove these?

 

suyash1_0-1744614217167.png

 

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
PeterB
Tourist
10 0 2

Hey,

Yes and I want to add in the attached Stars Rating from Air Reviews

Screenshot 2025-04-14 at 08.06.13.png

 

suyash1
Shopify Partner
10872 1345 1719

@PeterB - has  Air Reviews given you any code to put into theme to show these starts? 

 

to remove above ones please add this css to the very end of your base.css file and check,
Shopify Admin -> Online Store ->Theme -> Edit code -> base.css

 

.rating {display: none;    visibility: hidden;}
To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
PeterB
Tourist
10 0 2

Hey,

Yes they gave me the below snippet  for collection and homepage collection star rating along with this link but Im not sure where to put in my theme code: https://help.airreviews.io/display-reviews/star-rating/add-star-rating-to-product-card

<div
class="AirReviews-Widget AirReviews-Widget--Stars"
style="margin-top:0.7rem"
data-review-avg="{{ card_product.metafields.air_reviews_product.review_avg }}"
data-review-count="{{ card_product.metafields.air_reviews_product.review_count }}"
></div>

suyash1
Shopify Partner
10872 1345 1719

@PeterB - this needs little code tweak, if you can accept me as collaborator then I can send you the request and do it for you. Need to put that code into product template

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
PeterB
Tourist
10 0 2

Hey,

The code doesnt need to go in the product template as its already showing there, it needs to go on the homepage and collection level pages.

suyash1
Shopify Partner
10872 1345 1719

@PeterB yes then collection.liquid, need to put code in the place where you want reviews to show up

To build shopify pages use PAGEFLY | Contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.

Moeed
Shopify Partner
7375 1996 2438

This is an accepted solution.

Hey @PeterB 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.card-information__wrapper .rating {
    display: none !important;
}
.product__info-container .rating {
    display: none !important;
}
</style>

RESULT:

Moeed_0-1744614549781.pngMoeed_1-1744614579011.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications