badges in comments
romantaran - January 11, 2007 - 12:28
| Project: | User Badges |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
I tried to use
<?php
print user_badges_for_uid($uid);
?>
#1
The parameter to user_badges_for_uid has to be a user id. In comment.tpl.php the uid of the comment author is held in $comment->uid, so you can use:
<?phpprint user_badges_for_uid($comment->uid);
?>
#2