how to change the name

hello

in Redline's Sports Manager it shows "My Premier Team" in navbar and in the postbit user info left


is there any way that i can change its name to "My IPL Team"




its like this
### Step 3 ###
In the postbit/postbit_legacy template

### Find ###

<div>
$vbphrase[posts]: $post[posts]
</div>


### Under it Add ###

<if condition="!empty($post[premierteam])">
<div>
$vbphrase[my_premierteam]: <img src="$vboptions[bburl]/images/premier/$post[premierteam].gif" border="0" />
</div>
</if>


### Step 4 ###

n the navbar template

### Find ###

$vbphrase[private_messages_nav]

### Under it Add ###

<br />$userpremierteams


You can place " $userpremierteams " anywhere you want in the navbar template to show the
Premier Teams dropdown list.


### Step 5 ###

In the MEMBERINFO template

### Find ###

$block_data[fields]

### Under it Add ###

<if condition="!empty($userinfo[premierteam])">
<strong>$vbphrase[my_premierteam]:</strong>&nbsp;<img src="$vboptions[bburl]/images/premier/$userinfo[premierteam].gif" border="0" />
</if>



please help


sorry for my English
 
Search for my_premierteam in the phrase manager and change it to what ever you want.

my_premierteam is the phrase variable name, you keep that but change the phrase it calls, fyi
 
Back
Top