Discuss and resolve questions on Liquid, JavaScript, themes, sales channels, and site speed enhancements.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi all,
I really need help on this.
So I have a form which is submitted:
<form name="forminput"> <input id="formid" name="inputname" value=""> </form>
Once it is submitted (done automatically using js), I want to assign that value to a variable but no luck so far... What I've tried but didn't work is:
{% assign variable = form.body %}
{% assign variable = form[formid] %}
{% assign variable = form.body.formid %}
Really need help! Not sure what to try anymore... I can see the form was submited on the url, however the variable has no value as I'm test printing the variable on a h1 tag and it keeps empty...
Please help, thank you!