| Author |
Message |
steve
Joined: 10 Jun 2009 Posts: 23
|
Posted: Fri Jun 12, 2009 4:31 am Post subject: MaxBulk Mailer :: edit subscribe_single_fixed.php |
|
|
Is it possible to edit the subscribe_single_fixed.php file so that only the email address is captured/required? The email address is all that we need.
I tried just removing the data and fields in the table however it still errors out and requires First and Last Name upon submitting. |
|
| Back to top |
|
 |
stanbusk Site Admin
Joined: 28 Dec 2005 Posts: 4435
|
Posted: Fri Jun 12, 2009 10:52 am Post subject: |
|
|
Yes, but you also have to remove the PHP code that checks for the existence of the fields you have removed. There are two lines below:
| Code: | 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; } |
|
|
| Back to top |
|
 |
|