Go to Sections folder → collection-template.liquid file
Look for the section of code that generates the product fields in the collection. This code may vary depending on your theme, but it typically uses a loop to display each product. You’ll find code similar to:
{% for product in collection.products %}
### {{ product.title }}
{{ product.description }}
{% endfor %}
To remove specific fields, you can simply delete the corresponding lines of code. For example, to remove the product description field, you would remove the line
{{ product.description }}
.
To add other fields from the product, you’ll need to identify the desired field names and access them using Liquid syntax. For example, if you want to display the product’s vendor, you could add a line like