Skip to main content
All CollectionsGuides / Tutorials / FAQTimelinesRegistration
Using First Name and Last Name on Registration Instead of Only Name
Using First Name and Last Name on Registration Instead of Only Name

Would you like to customize your registration form by collecting separate first and last names instead of a single name field?

AEvent avatar
Written by AEvent
Updated over 4 months ago

In this tutorial, you will learn how to customize your registration form by collecting separate first and last name instead of our default name. (If using our form builder, this is done automatically).

Prerequisite: You've already implemented an AEvent Registration Form (Code Based Version) and it's installed with your registration page.

Navigate to your Registration Form Code (Within Your Page Builder)

First, we must navigate to our Registration Form. Depending on the page builder being used, that is done in a number of different ways. there is a single line that we need to remove. (Looking for Help? Maybe our Page builder Tutorials can assist)

Once you've navigated to your form, locate the name input field, select it, and delete it.

<input name="name" type="text" value="">

From there we need to paste in fname and lname using the code below.

<input name="fname" type="text" value="">
<input name="lname" type="text" value="">

And that's it! Save your registration form within your page builder. No more updates are needed within AEvent. Depending on your page builder you may have some additional steps to complete prior to the first name and last name being ready for use.

(Additional steps shown from ClickFunnels Classic)

Did this answer your question?