How can I hide PRICE and ADD TO CART on specific collection

Hello, I am looking for help on how to hide PRICE, ADD TO CART, and WISHLIST button in a specific collection on my website as well as the product page on items from this collection. The collection I am looking to hide this in is this one: https://www.heritagehockey.com/collections/collectors-marketplace

I am not great at coding but would appreciate any help on what to plug in and exactly where. I am using a custom template called simplegreat.

Hello @heritagehockey ,

  1. Wrap the price, add to cart and Wishlist in this condition
    It’s foe collection template product loop.
{% if collection.handle != 'collectors-marketplace' %}
   You Price code
Your Add to cart code
Your  wishlist code
{% endif %}

Alternatively you can create custom templates for both product and collection. You can check here how to create alternate template https://www.shopify.in/partners/blog/shopify-alternate-templates
If you go with alternate template then you have to just remove the code which you don’t’ need.

Thanks