Is there a way to differentiate the thread poster in every thread? Like make their name bold and put something like "Thread Poster" under their name on every post they have in their thread?
Thanks!
Sorry to bump this, but it is still something I could get use out of if it can be done.
Thanks!
Add a check in Display.template.php like:
if ($context['topic_starter_id'] == $message['member']['id'])
echo 'topic starter';
Thanks! :)
Looks like this doesn't work on 1.0.6
Is there another way to make it work?
Thanks again
You'd need to add after:
$context['user']['started'] = $ID_MEMBER == $topicinfo['ID_MEMBER_STARTED'] && !$user_info['is_guest'];
this line:
$context['topic_starter_id'] = $topicinfo['ID_MEMBER_STARTED'];