About a year from last post, But any way. There are any new coding for 3.8.x?!
I have problem with this section of instructions:
Quote:
vB AdminCP -> Styles & Templates -> Style Manager -> (Select Style) -> Member Info Templates -> MEMBERINFO
Change the vB Phrase [group_memberships] to whatever you would like the title of the new area to be.
Example: System Specs
OR if you would like the extra options page and this quadrant to have the same title, change // This adds the label for the extra options page within the profile,
change:
<td class="tcat" width="50%">$vbphrase[group_memberships]</td>
to:
<td class="tcat" width="50%">$vbphrase[extra_options]</td>
FIND:
<if condition="$show['membergroups']">
<dl id="membergroups_list" class="smallfont">
$membergroupbits
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[x_is_not_a_member_of_any_public_groups]</phrase></strong></div>
</if>
REPLACE WITH:
<if condition="$show['extrainfo']">
<dl id="additionalinfo_list">
$customfields2
</dl>
<else />
<div class="smallfont"><strong><phrase 1="$userinfo[username]">$vbphrase[n_a]</phrase></strong></div>
</if>
|