Quote:
Originally Posted by iyama
Yes i found it.
In the template > usercp_vbereferrals
|
Thank you for your post now i have it fixed as well...
Go to Admin Control Panel >> Styles and Templates >> Style Manager >> (for each style) Edit Templates (in the down arrow by each Style name) >> User Control Panel Templates >> usercp_vbereferrals
Replace this:
Code:
<div class="block" id="referral_information">
<h2 class="blockhead">Your Referral Information - Total Referrals ({vb:raw referrals})</h2>
<div class="blockbody settings_form_border">
<div class="blockrow">
<p>Do you know somebody that might be interested in <b>{vb:raw vboptions.bbtitle}</b>? You can use the link below to refer others to our site. The link includes your unique referral ID so you will be credited for any referrals brought by using the link.
</p><br />
<p>If somebody follows <b><a class="textcontrol" href="{vb:raw vboptions.bburl}/index.php?referrerid={vb:raw bbuserinfo.userid}">your referral link</a></b> to <b>{vb:raw vboptions.bbtitle}</b>, it will auto-fill your Username on their Register form. When they register as a new member your referral count will increase and keep track of how many people you have referred to the site!</p><br />
<p class="summaryinfo"><b>Important:</b> Please do not spam other sites or e-mails with your link to <b>{vb:raw vboptions.bbtitle}</b>, this will likely not bring many referrals and create acrimony rather than goodwill towards the site. One hint is to add the link to your Email signature.<br /></p>
<br /><div class="padding: 5px; font-size: 9px; border: 1px solid #c4c4c4; margin: 0 2px; width:50%;" id="referrallink"><legend>Your Referral Link for <b>{vb:raw vboptions.bbtitle}:</b> </legend><a class="textcontrol" href="{vb:raw vboptions.bburl}/index.php?referrerid={vb:raw bbuserinfo.userid}">{vb:raw vboptions.bburl}/index.php?referrerid={vb:raw bbuserinfo.userid}</a></div>
</div>
</div>
With This:
Code:
<div class="block" id="referral_information">
<h2 class="blockhead">Your Referral Information - Total Referrals ({vb:raw referrals})</h2>
<div class="blockbody settings_form_border">
<div class="blockrow">
<p>Do you know somebody that might be interested in <b>{vb:raw vboptions.bbtitle}</b>? You can use the link below to refer others to our site. The link includes your unique referral ID so you will be credited for any referrals brought by using the link.
</p><br />
<p>If somebody follows <b><a class="textcontrol" href="{vb:raw vboptions.bburl}/register.php?referrerid={vb:raw bbuserinfo.userid}">your referral link</a></b> to <b>{vb:raw vboptions.bbtitle}</b>, it will auto-fill your Username on their Register form. When they register as a new member your referral count will increase and keep track of how many people you have referred to the site!</p><br />
<p class="summaryinfo"><b>Important:</b> Please do not spam other sites or e-mails with your link to <b>{vb:raw vboptions.bbtitle}</b>, this will likely not bring many referrals and create acrimony rather than goodwill towards the site. One hint is to add the link to your Email signature.<br /></p>
<br /><div class="padding: 5px; font-size: 9px; border: 1px solid #c4c4c4; margin: 0 2px; width:50%;" id="referrallink"><legend>Your Referral Link for <b>{vb:raw vboptions.bbtitle}:</b> </legend><a class="textcontrol" href="{vb:raw vboptions.bburl}/register.php?referrerid={vb:raw bbuserinfo.userid}">{vb:raw vboptions.bburl}/register.php?referrerid={vb:raw bbuserinfo.userid}</a></div>
</div>
</div>
</div>