Not required fields

beppuzzo

New Member
Hi everybody,
I need that the only required field (for subscribe and unsubscribe) is to be the "email field". I know it could be done with php mod but I've no idea how to do. Any little help ? Thank you so much in advance.
 

stanbusk

Administrator
Staff member
You can modify the sample HTML files we provide with MLM. They are in the lm/html folder. All you have to remove are the lines that creates an error on missing fields:

if ( $firstname == "" ) { $errors[] = "Enter your first name in the first name text box"; $wrong['firstname'] = TRUE; }
if ( $lastname == "" ) { $errors[] = "Enter your last name in the last name text box"; $wrong['lastname'] = TRUE; }
 
Top