1,在模板 resource_list_item 查找 第4行的 代碼: <xen:avatar user="$resource" size="s" img="true" /> 替换为 代碼: <a class="avatar Av{$resource.user_id}l"> <xen:if is="{$resource.external_url}"> <img src="{$resource.external_url}" rel="nofollow" width= "52" height="52" > <xen:else /> <img src="http://img.abc.com/images/icon.png" rel="nofollow" width= "52" height="52" > </xen:if> <a> 在模板 resource_view_header 查找 代碼: <a class="avatar Av{$resource.user_id}l" href="{xen:link members, $resource}"> <xen:avatar user="$resource" size="s" img="true" /> </a> 替换为 代碼: <a class="avatar Av{$resource.user_id}l"> <xen:if is="{$resource.external_url}"> <img src="{$resource.external_url}" rel="nofollow" width= "52" height="52" > <xen:else /> <img src="http://img.abc.com/images/icon.png" rel="nofollow" width= "52" height="52" > </xen:if> <a> http://img.abc.com/images/icon.png 为无选择时的默认图片