file upload code

i added a custom liquid code on my store for the product page

its for having a file upload option for customers to use before checking out

but this is applying to every single product on my store and i only need it for 1.

how can i change it to only be added to 1 product

1 Like

You can try to add wrap your code in this code and check agian

{% if product.id == your product id goes here %}
your liquid code
{% endif %}

Or create a new product template for that product and add custom liquid code in that template.