I've added some fields to my member account table that are for "office use only". I have them set so the member cannot view or edit the field. This works fine for existing accounts, as they do not show up on the view or edit screens.
However, if I open up the registration page as a new member, these supposedly "hidden" fields are displayed.
Is there a way I can prevent the field from ever displaying on the Registration form?
Is there a way I can prevent the field from ever displaying on the Registration form?
Yes I can show you how to achieve this. Let me know what type of field(s) you're using (text, or?) and the Custom Field ID #'s of the fields you do not want shown on registration.
Thx!
Is there a way I can prevent the field from ever displaying on the Registration form?
Yes I can show you how to achieve this. Let me know what type of field(s) you're using (text, or?) and the Custom Field ID #'s of the fields you do not want shown on registration.
Thx!
FIELD13 - text
FIELD14 - text
FIELD15 - text
FIELD16 - text area
FIELD17 - text
Appreciate your help.
Ok make the following change within /interface/subscribe.php
Text Field Change:
{if ($type[customs] == "text") }
to
{if ($type[customs] == "text" && $fid[customs] != "13" && $fid[customs] != "14" && $fid[customs] != "15" && $fid[customs] != "17") }
and for Text area Field change:
{if ($type[customs] == "textarea") }
to
{if ($type[customs] == "textarea" && $fid[customs] != "16") }
Give that a shot - Post back if all works well, or not 
Thanks!
i2
Works like a charm! Thank YOU.
Version 2 now supports from the back-end admin leaving custom created fields off of the registration page.