To get rid of the field you have to take it out of the image.php in the theme. To keep zenphoto from complaining about the email you have to change the following code from the function addComment under the Image class in classes.php
if (empty($email) || !is_valid_email_zp($email) || empty($name) || empty($comment)) {
return false;
}
should be changed to
if (empty($name) || empty($comment)) {
return false;
}
I have ver-1.0.8.2. I have commented the email and the site in the image.php under themes as well and This does not work to me...
I just basically don't need the email and the site on my comment section, anyone has ever done this? any HELP will be appreciated. Thanks in advance!
regards
You need to download the nightly build. Then go to the admin--options and comment configuration tabs. There you will see the options. Note that the nightly build may not be as stable as the released version. (However, so far we have had only one really bad nightly, so you are pretty safe. Most of us developers are running this build.)