Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • No, I didn’t have to do it. I use the latest versions of register_plus, wordpress and profiler.

    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.

    It worked for me with a simple
    . $vars['your_custom_field'] .

    It’s near line 606 in profiler.php

Viewing 3 replies - 1 through 3 (of 3 total)