Can I change the submitted value for search
I need to add a leading zero to for 4 digit numbers
For example someone inputs
5600
The search engine looks for
05600
<form action="/search">
<input type="text"
placeholder="Search"
name="q" // Change this value before submission or before it sends to /search
/>
<input type="hidden" name="type" value="product,page" />
<input type="hidden" name="options[unavailable_products]" value="hide" />
<input type="hidden" name="options[prefix]" value="last" />
<input type="submit" value="Search" />
</form>