Shopify themes, liquid, logos, and UX
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,
I need additional fields in Register Page. I am looking for different options.
One of the options I found was using an App called Powerful Form Builder (please suggest if there is a better one).
I am planning to create a page called "RegisterPage" and add the new form there.
How do I replace the URL - account/register with the new RegisterPage I created?
Thanks
Hi @paulson1 ,
We can't have /Account/Register with a different URL.
What we can do is add the additional field to the register page.
Here is the code how we can add additional field.
<div class="birthday">
<label for="birthday">Birthday</label>
<input id="birthday" type="date" name="customer[note][Birthday]" />
</div>
<input type="hidden" id="customer_tags" name="customer[tags]" value="VIP"/>
Thank you