Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: how to inset avatar


chrishajer
Participant

@chrishajer

From the readme file:

=================================

3. To display an uploaded avatar, insert the following template function.

a) On the user’s profile page (profile.php template).

<?php avatarupload_display($user->ID); ?>

This grabs the avatar info file directly from the current user’s profile information.

b) On each user’s forum posts (post.php template)

<?php avatarupload_display(get_post_author_id()); ?>

You can include the avatar anywhere else you like, just be sure to have the user’s ID available.

=================================

You would insert one of those pieces of code in a template file wherever you want the avatar to appear. Try one and see how it works.

Skip to toolbar