User Profile - edit profile and profile page help

Post here is you are having problems with any of the tutorials.
Post Reply
User avatar
rabatos
Posts: 46
Joined: Thu Aug 09, 2012 11:06 am

User Profile - edit profile and profile page help

Post by rabatos »

I want to have some optional fields for the user profiles.

So what I want is for example:
On the edit profile page to be able to enter a phone number.
But for this to only be displayed on the profile page if there is a value in the database.
If its empty nothing should show.

And if there is a value then for both the phone number and a label 'phone' to show on the profile page.

What do I need for this?
User avatar
jacek
Site Admin
Posts: 3262
Joined: Thu May 05, 2011 1:45 pm
Location: UK
Contact:

Re: User Profile - edit profile and profile page help

Post by jacek »

I would just do it as normal but then on the profile page add a check to see if there is a value.
if (!!empty($info['about_me'])){
    ?>
    <div>
        <h3>About Me</h3>
        <p><?php echo $info['about_me']; ?></p>
    </div>
    <?php
}
for example. You will also need to make sure you do not require the field to have a value on the edit page.
Image
User avatar
rabatos
Posts: 46
Joined: Thu Aug 09, 2012 11:06 am

Re: User Profile - edit profile and profile page help

Post by rabatos »

Thanks. Got it working.
Post Reply