What do you mean ?
You want to add a custom field to the waitlist form ?
There is no such mechanism in place there.
You could directly add the input field in the view file:
Telephone: <input type="text" name="waitlist_telephone" class="<?php echo HK_FORM_CONTROL_CLASS; ?>" size="40" <?php echo $attributes;?> />
However, you also need to create a new column in the hikashop_waitlist table in your database, and develop a small Joomla plugin of the group "hikashop" implementing the onBeforeWaitlistCreate(&$element, &$do) event to set $element->xxx (where xxx is the name of the column in the table) with the value from
$_POST['waitlist_telephone']
Then, in the waitlist email in System>Emails, you can use $data->xxx to retrieve the information from the database in order to add the value to the notification email to the customer. For the notification to the admin, you can use:the value from
<?php echo $_POST['waitlist_telephone']; ?>