Hi Gez,
To add custom user fields to display in the threads:
Setup your custom fields first.
Hover over the edit link in MODIFY and you'll see the profilefieldid number for that field. It will show up in the status bar of your web browser.
Go into Modify Templates
Expand the Default set of Templates and find the template called postbit
Look for an area that has
Code:
<smallfont>Registered: $post[joindate]<br>
Location: $post[field2]<br>
Posts: $post[posts]<br></smallfont></td>
Add your custom field after it. Mine looks like this after adding the custom field where I want it to display:
Code:
<smallfont>Registered: $post[joindate]<br>
Location: $post[field2]<br>
Posts: $post[posts]<br>
Car: $post[field5]</smallfont></td>
Hope that helps!
Nancy