vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Unfilled fields in Profile not displayed... (https://vborg.vbsupport.ru/showthread.php?t=26448)

tpearl5 08-26-2001 01:27 AM

Can this be done?

tubedogg 08-26-2001 01:59 AM

On which page?

tpearl5 08-26-2001 02:06 AM

More specifically, on the member profile pages in custom and normal fields which are not required and are not filled in by the user.

tubedogg 08-26-2001 02:32 AM

Yep, it's possible. You'll have to create templates for each that you want to show/not show and copy out the info from the getinfo template for that row and add a bit to member.php.

For example, if I don't want Location to show if it's empty, I'd do the following:
1) Create a new template called getinfo_location with the following in it:
Code:

<tr>
        <td bgcolor="{firstaltcolor}"><normalfont><b>Location:</b></normalfont></td>
        <td bgcolor="{firstaltcolor}"><normalfont>$userinfo[field2]</normalfont></td>
</tr>

2) If this field was already in the getinfo template (this was a slightly bad example cause it's a custom field that falls under the guise of $customfields in the getinfo template) I'd remove the whole row from the template and replace it with $userinfo[location] - but in this case we just need to add $userinfo[location] somewhere in the getinfo template.
3) In member.php find
Code:

    eval("\$customfields .= \"".gettemplate("getinfo_customfields")."\";");

  }

and add right after it
Code:

if ($userinfo[field2]!="") {
eval("\$userinfo[location] .= \"".gettemplate("getinfo_location")."\";");
} else {
  $userinfo[location="";
}

Just repeat for any other things you want to display/not display.

tpearl5 08-26-2001 02:42 AM

Seems easy enough! I'll try that out tomorrow when I'm awake. This should be a new feature for 2.1 ! No doubt...

Weasel 12-29-2001 02:21 PM

That's not easy, in fact thats the most hacked-up slackjaw thing i ever saw. Isn't there a way that will work for ALL fields? :confused:

Tim Wheatley 08-31-2002 04:35 PM

This is what I've put in my functions.php:

Code:

if ($post[field2]!="") {
eval("\$post[field2] = \"".gettemplate("postbit_location")."\";");
                } else {
                        $post[field2]="";
                }

        if ($post[joindate]!="") {
eval("\$post[joindate] = \"".gettemplate("postbit_registered")."\";");
                } else {
                        $post[joindate]="";
                }

if ($post[posts]!="" and $post[posts]!="0") {
                        eval("\$post[posts] = \"".gettemplate("postbit_posts")."\";");
                } else {
                        $post[posts]="";
                }

Then make three new templates, postbit_location, postbit_posts and postbit_registered.

All they should contain is (example):
Code:

Posts: $post[posts]<br>
What all the above does it makes the stats within postbit invisible when someone hasn't made any posts, hasn't filled in a location, or is a guest (so of course hasn't filled any of the info in).

Boofo 08-31-2002 06:17 PM

There's a hack out just for the customfields not showing up in the profile page if they are empty. It is by AFTERLAB and the hack is called "Hide Unentered Fields".

Chris M 08-31-2002 06:43 PM

Thank you Boofo:)

Satan

Boofo 08-31-2002 07:11 PM

You're welcome there, Chris. ;)

Quote:

Originally posted by hellsatan
Thank you Boofo:)

Satan



All times are GMT. The time now is 06:50 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01104 seconds
  • Memory Usage 1,730KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete