From a8421e5f96ef8f06dd060f4de6bd217cf9189c1a Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Sun, 6 Nov 2022 10:56:33 -0700 Subject: [PATCH] Remove price from product list views --- src/storefront/templates/storefront/category_detail.html | 1 - src/storefront/templates/storefront/product_list.html | 1 - 2 files changed, 2 deletions(-) diff --git a/src/storefront/templates/storefront/category_detail.html b/src/storefront/templates/storefront/category_detail.html index 38f82a7..23c55aa 100644 --- a/src/storefront/templates/storefront/category_detail.html +++ b/src/storefront/templates/storefront/category_detail.html @@ -27,7 +27,6 @@

{{ product.name }}

{{ product.subtitle }}

{{product.description|truncatewords:20}}

-

${{product.variants.first.price}}

{% endfor %} diff --git a/src/storefront/templates/storefront/product_list.html b/src/storefront/templates/storefront/product_list.html index 70535b9..3c2c95a 100644 --- a/src/storefront/templates/storefront/product_list.html +++ b/src/storefront/templates/storefront/product_list.html @@ -28,7 +28,6 @@

{{ product.name }}

{{ product.subtitle }}

{{product.description|truncatewords:20}}

-

${{product.variants.first.price}}

{% endfor %}