XF 1.5 How to set a default avatar, and how to remove the "replied" avatar placeholder

Shazepe

Member
Hi,

The last few things I need to figure out right now are how to set a default avatar and how to remove your avatar from the threads list when you've replied to a thread.

My theme is Flat Awesome + by pixeledit, not sure if that's relevant.

I've looked through the user groups, and every page in the styling but can't find where I can set users default avatar.

Also how do I remove this:
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
Also how do I remove this:
In thread_list_item template delete this
Rich (BB code):
    <div class="listBlock posterAvatar">
        <span class="avatarContainer">
            <xen:avatar user="$thread" size="s" img="true" />
            <xen:if is="{$thread.user_post_count}"><xen:avatar user="$visitor" size="s" img="true" class="miniMe" title="{xen:phrase you_have_posted_x_messages_in_this_thread, 'count={xen:number $thread.user_post_count}'}" /></xen:if>
        </span>
    </div>
The last few things I need to figure out right now are how to set a default avatar
Id like to implement a default new user image as well. Bumping
To set an new default avatar you need replace the images in the style folder
You can find them in styles\style_folder\xenforo\avatars
 
The easier way to remove the little avatar to threads you have replied to if you don't want to mess with templates (which get over written when you upgrade) is to add this to your EXTRA.CSS

Code:
.discussionListItem .posterAvatar .miniMe {
display: none !important;
}
 
Top Bottom