which users avatar??? the avatar is displayed in many locations…
again on the user id, it depends… if you do not supply the user id, it will auto fill the id of the current logged in user… so if you just want the current user, that is fine… but if you are displaying it somewhere that is not current logged in user based, you need to supply it… and how you supply it depends on where you are using the custom profile field since we normally have a user id setup, but it will vary from location to location…
so for example, if you want it to show in the topic view page, for each post, under the users avatar in the post info section, it would be something like:
sp_CustomProfileFieldsDisplay($name, $spThisPostUser->ID);
if you were showing it under the avatar in the users profile, it would be
sp_CustomProfileFieldsDisplay($name, $spProfileUser->ID);
of course, for both, you need to replace the $name with the field name…
so did I guess one of the avatar locations? if not, please specify which one…