Hi folks,
I added the code and got the custom field "Street Address" working fine. I have one issue. I see that others have had the same issue described in previous posts but nobody posted a solution....
When a client creates a new ticket, it works fine. However, when a client is logged in and now tries to create a ticket, the screen displays only the Name and Email, but stops at my custom field. Best I can figure out is that the problem is in this piece of code...can anybody help please? Thanks.
<tr>
<th nowrap >Street Address:</th>
<td>
<?if ($thisclient && ($address=$thisclient->getaddress())) {
?>
<input type="hidden" name="address" size="25" value="<?=$address?>"><?=$address?>
<?}else {?>
<input type="text" name="address" size="25" value="<?=$info?>">
<?}?>
<font class="error">* <?=$errors?></font>
</td>
</tr>