Strady77 Posted April 29, 2011 Share Posted April 29, 2011 Ciao a tutti, vorrei inserire un nuovo campo in più rispetto a quelli che già sono presenti nel contact-form del ps.praticamente vorrei che oltre ai campi "indirizzo email" e "messaggio" ci fosse anche "numero di serie"da quello che ho capito devo modificare solo i due file contact-form.php e contact-form.tpl, ma non ho molto chiaro come e dove, potete darmi un'aiuto???pensavo di inserire questo nel tpl, per aggiungere il campo Numero di Serie: {l s='Numero di Serie'} <input type="text" id="numeroserie" name="numeroserie" value="{$numero serie}" />* Ma poi mi sono piantato col PHP!?!?!...GRAZIEEEE Link to comment Share on other sites More sharing options...
Strady77 Posted April 29, 2011 Author Share Posted April 29, 2011 nessun aiuto??? Link to comment Share on other sites More sharing options...
jeevanoss Posted April 30, 2011 Share Posted April 30, 2011 You have to modify contact-form.php & contact-form.tpl for this modification.In contact-form.php first you get value of numeroserie$numeroserie = Tools::getValue('numeroserie')Then you can add numeroserie in mail function.if (Mail::Send(intval($cookie->id_lang), 'contact', 'Message from contact form', array('{email}' => $from, '{message}' => stripslashes($message),{'numeroserie'}=> $numeroserie ), $contact->email, $contact->name, $from, (intval($cookie->id_customer) ? $customer->firstname.' '.$customer->lastname : $from)))Also you have to modify contact mail template to send "numeroserie" Link to comment Share on other sites More sharing options...
Strady77 Posted May 2, 2011 Author Share Posted May 2, 2011 Perfect!!!! jeevanoss TANKSSSSSS Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now