xF1 How to add Animated Avatars without Extensions

  • Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Radio

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,503
    7,742
    321
    localhost
    Heisenberg submitted a new resource:

    - Converted from thread...

    Here is some source codes that I have made to make it seem like your using an Imagick Extension that works with Animated Avatars and such.

    Code #1 - In Threads (Everyone should know this one)
    Go to "message_user_info"
    Look for

    Code:
    <xen:avatar user="$user" size="m" img="true" />

    Replace with:

    Code:
    <a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}">
    <img src="{xen:helper avatar, $user, l, 'true'}" alt="{$user.username}" height="96px" width="96px"...

     
    Last edited:

    ven0m

    Administrator
    Staff member
    Administrator
    Moderator
    Platinum
    xenForo 2.x.x
    xenForo 1.x.x
    Contributor
    vBulletin All Access Pass
    The Chest
    Verified
    Ultra Platinum VIP
    Platinum VIP
    Gold VIP
    Silver VIP
    Premium
    Member
    Jul 17, 2005
    20,503
    7,742
    321
    localhost
    If you have wainidigo last poster avatar add-on, or Gensesis here is another step of steps for you
    Code #1 - Node Category
    Go to "waindigo_node_category_avatar_lastpostavatar"
    or
    Go to "waindigo_node_category_avatar_genesis
    or
    Go to "gen_node_category_avatar"

    Look for:

    Code:
    <xen:avatar user="$category.lastPost" size="s" img="true" />

    Replace with:

    Code:
    <a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}">
    <img src="{xen:helper avatar, $$category.lastPost, l, 'true'}" alt="{$user.username}" height="96px" width="96px" itemprop="photo" />
    </a>

    Code #2 - Node Forum
    Go to "waindigo_node_forum_avatar_lastpostavatar"
    or
    Go to "waindigo_node_forum_avatar_genesis"
    or
    Go to "gen_node_forum_avatar"
    Look for:

    Code:
    <xen:avatar user="$forum.lastPost" size="s" img="true" />

    Replace with:

    Code:
    <a class="username avatar Av{$user.user_id}l">
    <img src="{xen:helper avatar, $forum.lastPost, l, 'true'}" alt="{$user.username}" height="96px" width="96px" itemprop="photo" />
    </a>

    Code #3 - Node Library
    Go to "waindigo_node_library_avatar_lastpostavatar"
    or
    Go to "waindigo_node_library_avatar_genesis"
    or
    Go to "gen_node_library_avatar"
    Look for:

    Code:
    <xen:avatar user="$library.lastArticlePage" size="s" img="true" />

    Replace with:

    Code:
    <a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}">
    <img src="{xen:helper avatar, $user, l, 'true'}" alt="{$user.username}" height="96px" width="96px" itemprop="photo" />
    </a> img="true" />

    Code #4 - Thread List
    Go to "waindigo_thread_list_item_lastpostavatar"
    or
    Go to "waindigo_thread_list_item_genesis"
    or
    Go to "gen_thread_list_item"

    Look for:

    Code:
    <xen:avatar user="$thread.lastPostInfo" size="s" img="true" />

    Replace with:

    Code:
    <a class="username avatar Av{$user.user_id}l" href="{xen:link members, $user}">
    <img src="{xen:helper avatar, $thread.lastPostInfo, l, 'true'}" alt="{$user.username}" height="96px" width="96px" itemprop="photo" />
    </a>