Re: Profile Fields – Hide on edit profile
Hey Nicola,
I don’t mean to disagree with you, and Im sure you know more than me, but I think this IS possible….I’ve done it on other WP installs
once the extra profile fields are created, I just need a way to call them back.
(I realize I would be removing the “get additional fields” function and just code it by hand)
For example if I wanted to display the users first name, I would use this:
Register Page:
<input type="text" name="first_name" id="first_name" class="input" value="" size="25" tabindex="20" /></label>
Profile Page:
<input type="text" name="first_name" id="first_name" class="input" value="<?php echo $_GET['first_name']; ?>" size="25" tabindex="20" READONLY=READONLY /></label>
so rather than displaying the form fields dynamically(x_profile), I would just hand code them in based on what “extra fields” I’ve created
that will work won’t it?
I just need to know which files to modify….
thanks for brainstorming with me