From 8e3e4d4f2392e6032dba7e46830e8dd6d099f79b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Guevremont?= Date: Thu, 20 Oct 2016 10:08:44 -0400 Subject: [PATCH] Suggestion to add profile blog image when it have one If a member is using a BlogImage, it will be use instead of the Gravatar image. --- templates/CommentsInterface_singlecomment.ss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/CommentsInterface_singlecomment.ss b/templates/CommentsInterface_singlecomment.ss index 7182bca..480bd14 100755 --- a/templates/CommentsInterface_singlecomment.ss +++ b/templates/CommentsInterface_singlecomment.ss @@ -8,7 +8,9 @@ $Created.Nice ($Created.Ago)

<% end_if %> -<% if $Gravatar %> +<% if $Author.BlogProfileImage && $Gravatar %> + Gravatar for $Author.Name.ATT +<% else_if $Gravatar %> Gravatar for $Name.ATT <% end_if %>