如何在Drupal 7中显示用户头像?
我想知道如何在 Drupal 7 中显示用户头像。 我想以全尺寸和缩略图形式显示头像。
I'd like to know how to display a user avatar in Drupal 7.
I want to display the avatar in full size and as the thumbnail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保在帐户设置 (admin/config/people/accounts) 中启用用户配置文件,然后您可以使用 $user_profile 在模板中显示它们:-
http://api.drupal.org/api/drupal/modules--node--node.tpl.php/7
的user-picture.tpl.php 模板将允许您覆盖它的输出方式。
Make sure you enable User profiles in the account settings (admin/config/people/accounts) and then you can display them in templates using $user_profile:-
http://api.drupal.org/api/drupal/modules--node--node.tpl.php/7
The user-picture.tpl.php template will let you override how it is output.
你可以使用类似的东西:
You can use something like:
当我使用时,用户图片链接到用户个人资料。我已将用户图像设置为显示为缩略图。我想将用户图片链接到全尺寸图片并使用 lightboxII 显示它们。这似乎是一项非常简单的任务,但我还不知道如何去做。
When I use the user picture is linked to the user profile. I have set my user images to be displayed as thumbnails. I'd like to link the user picture to the full sized picture and display them using lightboxII. It seems to be a very easy task but I couldn't figure out yet how to do it.