MyBB Community Forums

Full Version: OUGC Profile Fields Categories
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Quote:Allow administrators to create custom profile fields categories.

With this plugin administrators will be able to create multiple custom profile fields categories to organize their usage around the forum.

At the moment it just handles categorization in the ACP and does nothing in the fron-end.

https://github.com/Sama34/OUGC-Profile-F...Categories

I have been long planning this, it was originally planned for my RPG and a support forum.

Another Projects:
Hello!

Thank you for linking me to this, I'm really excited to use it, however, I'm having an issue at the moment and I'm not sure if I did something incorrect or if it is a bug. I am hoping you can assist me :)

As you will see from the image below, the Profile Fields are showing up in random groupings, and I am not sure why. The pictured fields shouldn't be showing up in either of those categories, but are actually showing up in all of them.?

They are set to show up in Group 6.

I'm not sure how I messed up, so your assistance would be outstanding. I can provide log-in details for a test account if you would like to view the profile end of things; just let me know.

Thank you so much for any assistance. I appreciate it.

[Image: 5a9d231207640631139c1e4b62cb480f.png]
[Image: 749ab53506e15879230b4567214226f5.png]
[Image: 7f5613b193b98e8c544ba8e70b82f042.png]
[Image: 5f76f7109f7ac5a1b85ee60e4700512e.png]

usercp_profile codes
<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->edit_profile}</title>
{$headerinclude}
</head>
<body>
{$header}
<form action="usercp.php" method="post" name="input">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table width="100%" style="border:none !important" align="center">
<tr>
{$usercpnav}
<td valign="top">
{$errors}
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->edit_profile}</strong></td>
</tr>
<tr>
<td width="50%" class="trow1" valign="top">
{$GLOBALS['profiecats']->output['1']} <!-- OOC FIELDS -->
<br />
  {$GLOBALS['profiecats']->output['2']} <!-- Character's - All -->
    <br />
    {$GLOBALS['profiecats']->output['3']} <!-- Character's - Dragonriders -->
    <br />
    {$GLOBALS['profiecats']->output['4']} <!-- Character's - Links -->
    <br />
        {$GLOBALS['profiecats']->output['5']} <!-- Character's - Information -->
    <br />
        {$GLOBALS['profiecats']->output['5']} <!-- Character's - Profiles -->
    <br />
    
<fieldset class="trow2 dashed">
<legend><strong>{$lang->profile_required}</strong></legend>
<table cellspacing="0" cellpadding="{$theme['tablespace']}" style="border:none !important">
<tr>
<td colspan="2"><span class="smalltext"><strong>{$lang->change_email_notice}</strong></span></td>
</tr>
</table>
</fieldset>
<br />
<fieldset class="trow2 dashed">
<legend><strong>{$lang->profile_optional}</strong></legend>
<table cellspacing="0" cellpadding="{$theme['tablespace']}" style="border:none !important">
<tr>
<td colspan="3"><span class="smalltext">{$lang->birthday}</span></td>
</tr>
<tr>
<td>
<select name="bday1">
<option value="">&nbsp;</option>
{$bdaydaysel}
</select>
</td>
<td>
<select name="bday2">
<option value="">&nbsp;</option>
<option value="1" {$bdaymonthsel['1']}>{$lang->month_1}</option>
<option value="2" {$bdaymonthsel['2']}>{$lang->month_2}</option>
<option value="3" {$bdaymonthsel['3']}>{$lang->month_3}</option>
<option value="4" {$bdaymonthsel['4']}>{$lang->month_4}</option>
<option value="5" {$bdaymonthsel['5']}>{$lang->month_5}</option>
<option value="6" {$bdaymonthsel['6']}>{$lang->month_6}</option>
<option value="7" {$bdaymonthsel['7']}>{$lang->month_7}</option>
<option value="8" {$bdaymonthsel['8']}>{$lang->month_8}</option>
<option value="9" {$bdaymonthsel['9']}>{$lang->month_9}</option>
<option value="10" {$bdaymonthsel['10']}>{$lang->month_10}</option>
<option value="11" {$bdaymonthsel['11']}>{$lang->month_11}</option>
<option value="12" {$bdaymonthsel['12']}>{$lang->month_12}</option>
</select>
</td>
<td>
<input type="text" class="textbox" size="4" maxlength="4" name="bday3" value="{$bday['2']}" />
</td>
</tr>
<tr>
<td colspan="3">
<br /><span class="smalltext">{$lang->birthdayprivacy}</span>
</td>
</tr>
<tr>
<td colspan="3">
<select name="birthdayprivacy">
<option value="all"{$allselected}>{$lang->birthdayprivacyall}</option>
<option value="none"{$noneselected}>{$lang->birthdayprivacynone}</option>
<option value="age"{$ageselected}>{$lang->birthdayprivacyage}</option>
</select>
</td>
</tr>
{$website}
</table>
</fieldset>
{$customfields}{$custom_status}
</td>
<td width="50%" class="trow1" valign="top">
{$customtitle}
{$contactfields}
{$awaysection}
</td>
</tr>
</table>
<br />
<div align="center">
<input type="hidden" name="action" value="do_profile" />
<input type="submit" class="button" name="regsubmit" value="{$lang->update_profile}" />
</div>
</td>
</tr>
</table>
</form>
{$footer}
</body>
</html>
Will youbrelease this soon? I am looking for somethink like this with other additions.
Since this seems the most wanted plugin from my development list (by you two), I might as well release it next. Let me see how it works, as it has been years since I wrote the current not stable code.
@Omar G. - yes, this is something what is really useful, I hope you will find some spare time and make it possible.

SMF has this in core with more features - you can select predefined text for every input etc.
@Omar G -- that would be outstanding! :D I eagerly look forward to your progress and thank you so much for taking the time to work on this! :D
I did some work last week on this. It seems to be working for the user control panel now, but it is really time consuming since I'm working on other projects as well.

Hopefully this will be done for MyBB 1.8 and not 1.9, I will try to sync the code in GitHUB with local copy.
Looking forward to this Omar, It might be good for a dashboard section in profile. Smile
Same here. Most wanted plugin
Bump Smile really interested!
Pages: 1 2 3