How to conditionally show a product block on the product page if product.type == x

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??

1 Like

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 %}
1 Like