XF 2.3 Display thread image in tag page

PhineasD

Active member
How can I change the default display of a user avatar to the main thread image in the "tag_view"template?

Thx
 
Solution
Found it, but it needs some css customization:

Code:
        <span class="contentRow-figure">
		<img src="{$thread.cover_image}" alt="{$thread.title}" loading="lazy" class="your-custom-css"/>
        </span>
I think I need to replace this code in search_result_thread template, but I don't know which one.

Code:
        <span class="contentRow-figure">
            <xf:avatar user="{$thread.User}" size="s" defaultname="{$thread.username}" />
        </span>
 
Found it, but it needs some css customization:

Code:
        <span class="contentRow-figure">
		<img src="{$thread.cover_image}" alt="{$thread.title}" loading="lazy" class="your-custom-css"/>
        </span>
 
Solution
Back
Top Bottom