MyBB Community Forums

Full Version: Profile question want to add another field
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I was wondering how i could add another field on a profile.
Wanted to add favourite player underneath where it says :-


Quote:Posts: 55
Group: Administrators
Joined: Nov 2007
Status: Online
Reputation: 0


Can this be done and how?

Thanks.
Add
$post['fidX']

Change X with the correct FID;
LeX- Wrote:Add
$post['fidX']

Change X with the correct FID;

Yet again Thanks LeX what php file do i need to change to add that line?
ACP - Templates - Modify/Delete - Choose Your Set [ Expand ] - Post Bit Templates - postbit_author_user
LeX- Wrote:ACP - Templates - Modify/Delete - Choose Your Set [ Expand ] - Post Bit Templates - postbit_author_user


Thank you LeX
Ok i'm alittle stuck here i've got this bit to work.{$post['fid4']}

But i was hoping to see this Favourite Liverpool Player (anwser here)

I tired adding this line ( guessing) but can't get it work what line do i need please?

{$post['Favourite Liverpool Player']}<br />


Thanks.
Just put:

Favourite Liverpool Player: {$post['fid4']}
...in your postbit_author_user.
DennisTT Wrote:Just put:

Favourite Liverpool Player: {$post['fid4']}
...in your postbit_author_user.



Yet again great help from these boards and from Dennis...


Thank you..
DennisTT,

How do i call this same profile field in the member profile page?

Thanks!
If it's a custom profile field, it should already be listed on the member's profile page by default (under Additional Info).

Or if you really want the variable, use:
{$userfields['fidX']}
I believe that should work.
Pages: 1 2