creaky
Customer
I'm going to be using an addons that shows a movie poster in a specific forum instead of the last posters avatar, this is the addon - https://xenforo.com/community/resources/tmdb-movie-thread-starter.2149/
This works correctly with the default style & Xenbase but not with Edge, seen here http://moviesgamestv.co.uk/forums/the-movies.12/
Default style
Xenbase
Edge
I've switched off the Replace Thread list avatars option but it only shows the last post avatar and not the movie poster.
It's using a template modification to make the change which is below, I belive this will need to be altered in some way.
thread_list_item
This works correctly with the default style & Xenbase but not with Edge, seen here http://moviesgamestv.co.uk/forums/the-movies.12/
Default style

Xenbase

Edge

I've switched off the Replace Thread list avatars option but it only shows the last post avatar and not the movie poster.
It's using a template modification to make the change which is below, I belive this will need to be altered in some way.
thread_list_item
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>