template editing - excellent
Just thought i'd add a bit.
Once I'd got my head around the scripting processes of php (not too hard) I've started to make background changes to vshare's templates.
templates_c/users.tpl.php
One area I needed to change was the Users display to include the First and Last names of members. this task proved reasonably easy by adding first of all between the Name & Country sections. (from line 53+):
Quote:
<td>FIRST
<a href='users.php?a=<?php echo $_REQUEST['a']; ?>
&status=<?php echo $_REQUEST['status']; ?>
&sort=fname+asc'>[img]<?php echo $this->_tpl_vars[[/img]
/templates/images/up.gif' border='0'></a>
<a href='users.php?a=<?php echo $_REQUEST['a']; ?>
&status=<?php echo $_REQUEST['status']; ?>
&sort=fname+desc'>[img]<?php echo $this->_tpl_vars[[/img]
/templates/images/down.gif' border='0'></a>
</td>
<td>LAST
<a href='users.php?a=<?php echo $_REQUEST['a']; ?>
&status=<?php echo $_REQUEST['status']; ?>
&sort=lname+asc'>[img]<?php echo $this->_tpl_vars[[/img]
/templates/images/up.gif' border='0'></a>
<a href='users.php?a=<?php echo $_REQUEST['a']; ?>
&status=<?php echo $_REQUEST['status']; ?>
&sort=lname+desc'>[img]<?php echo $this->_tpl_vars[[/img]
/templates/images/down.gif' border='0'></a>
</td>
Next after you've added the above script add this in from line 142
Quote:
<td><?php echo $this->_tpl_vars['users'][$this->_sections['aa']['index']]['fname']; ?>
</td>
<td><?php echo $this->_tpl_vars['users'][$this->_sections['aa']['index']]['lname']; ?>
</td>
Please note the line count alters when the first section is added.
Hope the info helps someone.
Dafydd