How to install it?

siditto

New Member
hi all m trying to install a mod but can figure out how plz help

THE INSTALLATION guide provided is confusing :(

PLZ EXPLAIN this to me

Code:
In template 'MEMBERINFO', find:
-----------------------------------------------------------------------------------------------------------
	<if condition="can_moderate()">
		<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&u=$userinfo[userid]">$vbphrase[user_options]</a></td>
	</if>
-----------------------------------------------------------------------------------------------------------

Add under:
-----------------------------------------------------------------------------------------------------------
	<!-- Hack: Username Management (MarcoH64) -->
	<if condition="$mh_unm_can_change_other_name">
		<td class="vbmenu_control"><a href="$mh_unm_modcp_link">$vbphrase[mh_unm_change_username]</a></td>
	</if>
	<!-- / Hack: Username Management (MarcoH64) -->
-----------------------------------------------------------------------------------------------------------

In template 'modifypassword' (Modify User Option Templates), find:
-----------------------------------------------------------------------------------------------------------
						<div>$vbphrase[confirm_new_email_address]:</div>
						<div><input type="text" class="bginput" name="emailconfirm" value="$bbuserinfo[email]" size="50" maxlength="50" dir="ltr" /></div>
					</td>
				</tr>
				</table>
			</fieldset>
			
-----------------------------------------------------------------------------------------------------------

Add under:
-----------------------------------------------------------------------------------------------------------
			<!-- Hack: Username Management (MarcoH64) -->
			<if condition="$bbuserinfo[mh_unm_can_change_username]">
				<fieldset class="fieldset">
					<legend>$vbphrase[mh_unm_change_username] ($vbphrase[optional])</legend>
					<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
					<tr>
						<td>
							<div>$vbphrase[mh_unm_new_username]:</div>
							<div><input type="text" class="bginput" name="mh_unm_new_username" value="$bbuserinfo[mh_unm_new_username]" size="50" maxlength="50" dir="ltr" /></div>
						</td>
					</tr>
					<tr>
						<td>
							<div>$vbphrase[mh_unm_confirm_new_username]:</div>
							<div><input type="text" class="bginput" name="mh_unm_confirm_new_username"  size="50" maxlength="50" dir="ltr" /></div>
						</td>
					</tr>
					</table>
				</fieldset>
			</if>
			<!-- / Hack: Username Management (MarcoH64) -->

-----------------------------------------------------------------------------------------------------------

In template 'postbit', find:
-----------------------------------------------------------------------------------------------------------
					<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
-----------------------------------------------------------------------------------------------------------

REPLACE by:
-----------------------------------------------------------------------------------------------------------
					<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]" $post[mh_unm_username_history]>$post[musername]</a>
-----------------------------------------------------------------------------------------------------------

In template 'postbit_legacy', find:
-----------------------------------------------------------------------------------------------------------
				<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">$post[musername]</a>
-----------------------------------------------------------------------------------------------------------

REPLACE by:
-----------------------------------------------------------------------------------------------------------
				<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]" $post[mh_unm_username_history]>$post[musername]</a>
-----------------------------------------------------------------------------------------------------------

/ End Template Edits

6.	Adjust your Usergroup settings as wanted, see Manual.txt and Admin Help if loaded

thanx
 
Go to Style Manager -> Select Edit Templete -> Open Member Info Templates


In template 'MEMBERINFO', find:
-----------------------------------------------------------------------------------------------------------
<if condition="can_moderate()">
<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&u=$userinfo[userid]">$vbphrase[user_options]</a></td>
</if>
-----------------------------------------------------------------------------------------------------------

Add under:
-----------------------------------------------------------------------------------------------------------
<!-- Hack: Username Management (MarcoH64) -->
<if condition="$mh_unm_can_change_other_name">
<td class="vbmenu_control"><a href="$mh_unm_modcp_link">$vbphrase[mh_unm_change_username]</a></td>
</if>
<!-- / Hack: Username Management (MarcoH64) -->
 
Cokaric said:
Go to Style Manager -> Select Edit Templete -> Open Member Info Templates


In template 'MEMBERINFO', find:
-----------------------------------------------------------------------------------------------------------
<if condition="can_moderate()">
<td class="vbmenu_control"><a href="moderator.php?$session[sessionurl]do=useroptions&u=$userinfo[userid]">$vbphrase[user_options]</a></td>
</if>
-----------------------------------------------------------------------------------------------------------

Add under:
-----------------------------------------------------------------------------------------------------------
<!-- Hack: Username Management (MarcoH64) -->
<if condition="$mh_unm_can_change_other_name">
<td class="vbmenu_control"><a href="$mh_unm_modcp_link">$vbphrase[mh_unm_change_username]</a></td>
</if>
<!-- / Hack: Username Management (MarcoH64) -->

thanx man that much i know but my question is where to edit in that ?
 
siditto said:
thanx man that much i know but my question is where to edit in that ?

U need to double click on MEMBERINFO

Go to

http://www.ursite.com/forum/admincp/template.php?do=modify

http://www.ursite.com/forum/admincp/template.php?s=&group=&do=modify&expandset=1

1 is template id, change id ir click on ur template

Select edit template

Double click on Member Info Template

Double click on MEMBERINFO

or just click Edit

2urmaea.jpg
 
Back
Top