Well, I just use the directory function of profiler…
But for the directory function :
- seek the line
$output .= '<table border="0">';
near line 577 in profiler.php
- add the custom information you want into a <th> tag. Just before
$output .= '</tr>';
, add, for example : $output .= '<th>Telephone number</th>';
- then, juste before
$output .= "</tr>";
, near line 608, add
$output .= "<td>" . $vars['phone_number'] . "</td>";
replace phone_number with the custom field you made. For example, if with Register Plus you made a custom field called “Phone Number”, you’ll have to put “phone_number”
I hope it’ll be useful…
Sorry for my bad english, I’m french and I’m only 16.