MyBB Community Forums

Full Version: Don't show unanswered profile fields.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I think it would be nice if you don't see unanswered profile fields in the member's profile. SO basically instead of seeing:

=======
Location: The Computer

Biography:
=======

You would see:

=======
Location: The Computer
=======

Alright. That's about it. Smile
Bad idea or do you just not get what I'm saying?
Perhaps people just don't have a comment?
If you want a quick,simple fix ::

Open member.php

Find
PHP Code:
eval("\$customfields .= \"".$templates->get("member_profile_customfields_field")."\";"); 

Change into
PHP Code:
        if($userfields[$field] != "")
        {
            eval(
"\$customfields .= \"".$templates->get("member_profile_customfields_field")."\";");
        } 
Reference URL's