Can some1 Please get me these

INVITATION SYSTEM:

In USERCP_SHELL Template Find this Code

HTML Code:
Code:
   <if condition="$show['profilepiclink']">
            <tr>
              <td class="$navclass[profilepic]" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=editprofilepic">$vbphrase[edit_profile_picture]</a></td>
            </tr>
          </if>
Add Below
HTML Code:
Code:
   <tr>
	<td class="alt2" nowrap="nowrap"><a class="smallfont" href="profile.php?$session[sessionurl]do=invitation">$vbphrase[invitation]</a></td>
</tr>

**
**

REGISTRATIONS TODAY:

Installation:

1. Import the attached XML.
2. Edit your FORUMHOME template located in Forum Home Templates > FORUMHOME.
Find:

Code:
Code:
<if condition="$show['activemembers']">,
<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
</if>
Replace with:
Code:
Code:
<if condition="$show['activemembers']">,
					<span title="<phrase 1="$vboptions[activememberdays]">$vbphrase[within_the_last_x_days]</phrase>">$vbphrase[active_members]: $activemembers</span>
				</if>,

<span title="<phrase 1="$vboptions[registrations_per_day_past_days]">$vbphrase[within_the_last_x_days]</phrase>"><phrase 1="$regperday">$vbphrase[daily_registrations]</phrase></span>

You're done!

**
**

FORUM SPONSOR:

nstallation
Import product-sponsor.xml

Done.

Template Edit
Open Forum Display templates > FORUMDISPLAY

Find:
HTML Code:
Code:
$navbar
Add after:
HTML Code:
Code:
<if condition="$foruminfo['sponsorenabled'] == 1">
<table width="100%" class="tborder" border="0" align="center">
  <tr>
    <td class="alt1"><table width="100%" border="0" cellspacing="5">
      <tr>
        <td width="10" rowspan="2" valign="middle"><div align="center"><a href="$foruminfo[sponsorlink]"><img src="$foruminfo[sponsorimage]" alt="$foruminfo[sponsorname] Image" border="0"></a></div></td>
        <td valign="top"><div align="left"><strong><a href="$foruminfo[sponsorlink]">$foruminfo[sponsorname]</a></strong></div></td>
      </tr>
      <tr>
        <td valign="top"><div align="left">$foruminfo[sponsordescription]</div></td>
      </tr>
    </table></td>
  </tr>
</table>
<br>
</if>

Done.
 
Back
Top