Posted by Marcelo
2015-04-06

Hi, thanks again for this great code.

Is there a way to make a field of tpl.contato.reg_page1.inc.php fixed and hiden?

Best Regards from Brazil.
Posted by Tom
2015-04-09

Yes, you can. First, run the form and check the HTML source code of the form.
Locate the input field that you want to convert to hidden. It looks like this
<input type='text' ..... >
Copy it to a text editor and change 'text' to 'hidden' like
<input type='hidden' ..... >
Put it in the template. You have to remove the php tag that generates the original input box because it conflicts with the hidden input tag you just inserted.