Dexter Adams
Dexter Adams

Reputation: 524

Adding attributes to Shopify's {% form %} liquid tag

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

Answers (1)

drip
drip

Reputation: 12943

Yes you can add attributes.

Example:

{% form 'contact', id: "test" %}

Upvotes: 8

Related Questions