Hi,
Set up a collection for the collab deal with full-price products
Create landing page that links to this collection
Customize theme to ensure that full prices are displayed
Logic to display full price code example
{% if collection.handle == 'collab-deal' %}
{% assign show_discount = false %}
{% else %}
{% assign show_discount = true %}
{% endif %}
{% for product in collection.products %}
{% if show_discount %}
{{ product.price | money }}
{% else %}
{{ product.compare_at_price | money }}
{% endif %}
{% endfor %}
Update the navigation