Ich habe schon mal ein bisschen ausprobiert - allerdings ohne echte php-Kenntnisse. Mein jetziger Stand:
Die Felder erscheinen im Formular, klicke ich aber den send-button erscheint die Fehlermeldung "_CONTACT_FORM_NC" -> "Please make sure the form is complete and valid."
Hier meine bisherigen (erfolglosen) Änderungen:
contact.html.php, L672:
PHP-Code:
<label for="contact_tel">
<?php echo(_TEL_PROMPT);?>
</label>
<br />
<input type="text" name="tel" id="contact_tel" size="30" class="inputbox" value="" />
<br />
<label for="contact_hcountry">
<?php echo(_COUNTRY_PROMPT);?>
</label>
<br />
<input type="text" name="hcountry" id="contact_hcountry" size="30" class="inputbox" value="" />
contact.php, L436 bis L438
PHP-Code:
$success = mosMail( $email, $name, $hcountry, $tel, $contact[0]->email_to, mosConfig_fromname .': '. $subject, $text );
$subject2 = $subject." Empfänger: ".$contact[0]->email_to;
$success2 = mosMail( $email, $name, $hcountry, $tel, "meineadresse@email.de", $mosConfig_fromname .': '. $subject2, $text );
contact.php, L373
PHP-Code:
$tel = strval( mosGetParam( $_POST, 'tel', '' ) );
$hcountry = strval( mosGetParam( $_POST, 'hcountry', '' ) );
Lesezeichen