Log in

View Full Version : Custom Profile Fields not appearing in 3.7


GameWizard
02-09-2008, 11:32 AM
Either I'm missing something, or something has changed since 3.7.

I am attempting to make some changes to my memberinfo template, which includes showing some profile fields. Here's the code which I use:

<if condition="$post[field10]">$post[field10]</if>

I am almost positive the code above is correct, however it doesn't work at all.

I also tried this:

<if condition="$vbulletin->userinfo[field10]">$post[field10]</if>

This time it actually does detect the "if" conditional, however, the $post[field10] doesn't actually show anything. And I do actually have the field filled in my usercp, and the ID is correct.

Any comments would be appreciated.

cheesegrits
02-09-2008, 05:04 PM
I'm not sure why you'd be expecting profile fields to be in a $post array on the profile page. Just use $userinfo['field10'].

Remember that what works in one template may not work in another. In this case, you may have used $post['field10'] in something like a postbit, called via showthread.php ... because showthread.php sets up that $post[] array to include all kinds of useful information sepcific to a given post. But MEMBERINFO is called from profile.php, which knows nothing about forum posts, and doesn't set up a $post[] array.

-- hugh

GameWizard
02-09-2008, 08:26 PM
It worked, thanks. I was struggling with this for a while and had tried just about every type of variable except $userinfo, the closest one I had used was $user. But in any case, well said, and thank you.