How to hide date in review posts on Air Reviews app?

Solved

How to hide date in review posts on Air Reviews app?

Luca93
Excursionist
13 1 2

Hi, does anyone know how to hide the date in review posts on the "Air Reviews: Product Reviews" app?

Accepted Solution (1)
Luca93
Excursionist
13 1 2

This is an accepted solution.

Thank you very much, it's much better this way.

View solution in original post

Replies 7 (7)

Sheesh_b
Shopify Partner
521 116 119

Hi @Luca93 

Website link please.

 

Thanks

We're here to simplify website creation for those looking to establish a strong online presence. Book a meeting slot if you want to discuss. It's FREE. BOOK NOW | Try Shopify for $1 for 3 Months: Shopify Trial | Shopify Web Store Developer |
LIKE or mark as ACCEPTED SOLUTION
Luca93
Excursionist
13 1 2
Sheesh_b
Shopify Partner
521 116 119

Hi @Luca93 

Kindly paste the below CSS code in base.css under assets at bottom

.AirReviews-Blocks__Date {
	display: none !important;
}

 

It'll look like this

Sheesh_b_0-1696768095820.png

 

Thanks

Sheesh B

We're here to simplify website creation for those looking to establish a strong online presence. Book a meeting slot if you want to discuss. It's FREE. BOOK NOW | Try Shopify for $1 for 3 Months: Shopify Trial | Shopify Web Store Developer |
LIKE or mark as ACCEPTED SOLUTION
Luca93
Excursionist
13 1 2

Perfect, it works, thank you very much.
I also wanted to know if it was possible to display a maximum of 3 reviews per page

Sheesh_b
Shopify Partner
521 116 119

Hi @Luca93 

Not much of help from the app but you can try the below CSS code in the same base.css file at bottom

#AirReviews-BlockWrapper {
	margin-bottom: 50px;
}
#AirReviews-BlockWrapper .AirReviews-Blocks {
	max-height: 570px;
	overflow: scroll;
	border-radius: 10px;
}
body .AirReviews-PreviewWrapper__Mobile .AirReviews-Blocks {
	border-radius: 10px;
	max-height: 730px;
	overflow: scroll;
}

 

Thanks

Sheesh B

We're here to simplify website creation for those looking to establish a strong online presence. Book a meeting slot if you want to discuss. It's FREE. BOOK NOW | Try Shopify for $1 for 3 Months: Shopify Trial | Shopify Web Store Developer |
LIKE or mark as ACCEPTED SOLUTION
Luca93
Excursionist
13 1 2

This is an accepted solution.

Thank you very much, it's much better this way.

lukavu
Tourist
11 0 2

Hi, De code works for me on desktop, but on mobile the dates are still displaying