Formstorkdocs
PricingENTRDashboard

Shopify

Shopify does not include a form backend beyond its default template, so wiring in Formstork lets any product or landing page collect submissions straight to your inbox. You paste one HTML block into a Custom Liquid section, with no app to install.

The form

<form action="https://api.formstork.com/submit" method="POST">
  <input type="hidden" name="access_key" value="YOUR_ACCESS_KEY">
  <label>Name <input type="text" name="name" required></label>
  <label>Email <input type="email" name="email" required></label>
  <label>Message <textarea name="message" required></textarea></label>
  <!-- Honeypot: bots fill this, humans don't. Keep it hidden. -->
  <input type="checkbox" name="botcheck" style="display:none" tabindex="-1" autocomplete="off">
  <button type="submit">Send</button>
</form>

Step by step

  1. In your Shopify admin, open Online Store > Themes.
  2. On your live theme, click Customize to open the theme editor.
  3. Add a section or block and choose Custom Liquid. Prefer code? Use Actions > Edit code and paste into a template or section .liquid file instead.
  4. Paste the form above into the Custom Liquid box.
  5. Replace YOUR_ACCESS_KEY with the key from your Formstork dashboard.
  6. Save, then preview and send a test entry. It lands in your inbox and your dashboard.

Keep spam out

The hidden botcheck honeypot stops most bots, so you get protection without a reCAPTCHA badge on your storefront. Formstork also runs a server-side spam filter you can tighten per form.

Free plan

The free plan covers 250 submissions a month, enough for most storefront contact and wholesale-inquiry forms. Submissions can also route to Slack, Google Sheets or a webhook from the dashboard.

Get your free access key and paste your first form.