- Joined
- Jan 6, 2023
- Messages
- 50
- Points
- 18
Reputation:
You don't need to use Liam W addon to add a rich color for username on your forum to view globally
Goto node_list_forum template.
Find this:
and replace using this code
Take note! this method are work between last post & latest thread widget
Goto thread_list_macros template.
Find this:
and replace using this code
Find this:
and replace using this code
don't mind the {{ phrase('started_by') } or {{ phrase('started_by_x') } that is my modification, just find yours
leave a like for contribution more.
Next post Icon after username without addon
don't be leech
Goto node_list_forum template.
Find this:
Code:
<li class="node-extra-user"><xf:username user="{$extras.LastPostUser}" defaultname="{$extras.last_post_username}" /></li>
Code:
<li class="node-extra-user"><xf:username user="{$extras.LastPostUser}" defaultname="{$extras.last_post_username}" rich="true" /></li>
Take note! this method are work between last post & latest thread widget
Goto thread_list_macros template.
Find this:
Code:
<li>{{ phrase('latest_x', {'name': $thread.last_post_cache.username}) }}</li>
Code:
<li>{{ phrase('started_by') }} <xf:username user="$thread.LastPoster" defaultname="{$thread.last_post_username}" rich="true" /></li>
Find this:
Code:
<li>{{ phrase('started_by_x', {'name': $thread.username}) }}</li>
Code:
<li>{{ phrase('started_by') }} <xf:username user="$thread.User" defaultname="{$thread.username}" rich="true" /></li>
don't mind the {{ phrase('started_by') } or {{ phrase('started_by_x') } that is my modification, just find yours
leave a like for contribution more.
Next post Icon after username without addon
Last edited: