MyBB Community Forums

Full Version: Bring Custom Profile Field Descriptions on Registration Pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here's a simple guide which brings the Custom Profile Field description on registration pages;

Open ./member.php and find;
eval("\$requiredfields .= \"".$templates->get("member_register_customfield")."\";");
and Add the following code just "Above" that;
$description = $profilefield['description'];

Now Go to: ACP > Templates > Your theme's templates > Member Templates > member_register_customfield > and find;
<td>{$code}</td>
and Change it into;
<td>{$code}<br/><span class="smalltext">Description: {$description}</span></td>

This'll result into this;
[attachment=22638]

How's That ? Smile
This is awesome...