Reputation: 524
Is it possible to add attributes to Shopify's {% form %}
liquid tag? I want to give all my forms id's so that I don't have to rely on parent elements to target their styles.
Upvotes: 3
Views: 5053
Reputation: 12943
Yes you can add attributes.
Example:
{% form 'contact', id: "test" %}
Upvotes: 8