I’d like to only display the star rating on product pages when the product.type==xyz
The Star rating is an “App block” from the shopify Reviews app
I’m using the impulse theme. It seems like maybe an edit to the product-template.liquid??
I’d like to only display the star rating on product pages when the product.type==xyz
The Star rating is an “App block” from the shopify Reviews app
I’m using the impulse theme. It seems like maybe an edit to the product-template.liquid??
You need to write Liquid code to check the product.type and conditionally render the stars, something like this:
{% if product.type == X %}
**stars widget**
{% endif %}