I have a custom field that is in the comprofiler table that is a required member ID number that members must enter during registration. I found the location in the comprofiler.html.php file that creates the page and I am able to insert the heading and the cell, but when I tried to add the table cell I get no data.
CB ver 1.31
At line 3318
Code:
<th><?php echo _UE_EMAIL; ?></th>
I add a line with -
<th><?php echo ID Number; ?></th>
then at 3336 is
Code:
echo "<td>".$users[$i]->email."</td>";
I added a line with -
echo "<td>".$comprofiler[$i]->cb_idnumber."</td>";
I think I need to add a select statement someplace to use the other data table, but I can't find it.
Can anyone help?
Last edit: 13 years 11 months ago by dsisaacs. Reason: readability