Мне надо в профиле пользователя сделать подпрофиль (его ребенка). Вот там я и хочу вывести аватар ребенка.
Все, что я нашел, это файлы
com_users_avatars.tpl со следующим кодом:
<div class="con_heading">{$LANG.SELECTING_AVATAR}</div> <div class="con_text">{$LANG.CLICK_ON_AVATAR_TEXT}:</div> <table class="" style="margin-top:15px;margin-bottom:15px;" cellpadding="5" width="100%" border="0"> {assign var="col" value="1"} {if $col==1} <tr> {/if} {math equation="(x-1)*y + z" x=$page y=$perpage z=$avatar_id assign="avatar_id"} <td width="25%" valign="middle" align="center"> <a href="/users/{$userid}/select-avatar/{$avatar_id}" title="{$LANG.SELECT_AVATAR}"> <img src="{$avatars_dir}/{$avatar}" border="0" /> </a> </td> {if $col==4} </tr> {assign var="col" value="1"} {else} {math equation="x + 1" x=$col assign="col"} {/if} {/foreach} {if $col>1} <td colspan="{math equation="x - y + 1" x=$col y=4}"> </td></tr> {/if} </table> {$pagebar}
<div class="float_bar"><a class="usr_avatars_lib_link" href="/users/{$id}/select-avatar.html">{$LANG.SELECT_AVATAR_FROM_COLL}</a></div> <div class="con_heading">{$LANG.LOAD_AVATAR}</div> <form enctype="multipart/form-data" action="/users/{$id}/avatar.html" method="POST"> <p>{$LANG.SELECT_UPLOAD_FILE}: </p> <input name="upload" type="hidden" value="1"/> <input name="userid" type="hidden" value="{$id}"/> <input name="picture" type="file" id="picture" size="30" /> <p style="margin-top:10px"> <input type="submit" value="{$LANG.UPLOAD}"> <input type="button" onclick="window.history.go(-1);" value="{$LANG.CANCEL}"/> </p> </form>