MyBB Community Forums

Full Version: Custom Field // Images // Postbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm currently attempting to get a football discussion board off the ground. I would like to put a custom field in their profile, which will allow them to choose their favorite team, either by selecting their team logo or selecting their team name from a drop-down list, and the image will show up when they post.

Is there anything out there I can possibly customize? I'm not advanced in code, but I'm pretty good at copying and pasting. Big Grin

I'd like to disable the ranks, and have their team logo show up centered below their username.
You can do that with the built in Custom Profile Fields feature. ACP >> Configuration >> Custom Profile Fields

Use the Select Box option.

You could then upload the team logos to ./images/logos/ using the team names as file names, then use the following in the postbit template to display the logos (replace X with the actual profile field ID):
<img src="images/logos/{$post['fidX']}.gif" alt="{$post['fidX']}" />