Welcome to the Unofficial Help Forum
because I said that there are valid issues with the way this modification loads its resources.
Somewhat astounding to me that you'd ignore someone helping and then remove their post so no one else see's the truth.
The efficiency with this modification isn't something to be ignored, it could cause some big problems on larger boards in regards to performance.
If more then 5 people have liked a post it will not show the names to save space.
2 Likes BGH, testuser like this
Though, if I'm not mistaken, that'll make the query a bit heavier.
There is an updated version in testing which includes that, a couple of other minor presentation things (namely '1 Likes' getting fixed) and just for fun there's also a popup. Presentation on that is not entirely the best but there's something of a limit to what can be done in SMF's help popup.
global $context, $txt, $smcFunc, $memberContext, $modSettings;
global $context, $txt, $smcFunc, $memberContext, $modSettings, $scripturl;
$context['page_title'] = count($likers) == 1 ? $txt['likes_popup_1'] : sprintf($txt['likes_popup_n'], comma_format(count($likers))); $context['help_text'] = $txt['likes_popup_liked']; $context['help_text'] .= '<table style="width: 100%">'; foreach ($likers as $liker) { loadMemberContext($liker); $context['help_text'] .= '<tr><td>' . $memberContext[$liker]['name'] . '</td><td class="ava">' . $memberContext[$liker]['avatar']['image'] . '</td></tr>'; } $context['help_text'] .= '</table>';
$context['page_title'] = count($likers) == 1 ? $txt['likes_popup_1'] : sprintf($txt['likes_popup_n'], comma_format(count($likers))); $context['help_text'] = '<div style="text-align:center;margin:10px 0">' . $txt['likes_popup_liked'] . '</div>'; $context['help_text'] .= '<table style="width:100%;border-top:1px solid #ccc;border-bottom:1px solid #ccc;padding:10px 0" cellpadding="7">'; foreach ($likers as $liker) { loadMemberContext($liker); $context['help_text'] .= '<tr><td class="ava" style="text-align:center">' . $memberContext[$liker]['avatar']['image'] . '</td><td><a href="' . $scripturl . '?action=profile;u=' . $liker . '" target="_blank" title="' . $txt['profile_of'] . ' ' . $memberContext[$liker]['name'] . '">' . $memberContext[$liker]['name'] . '</a></td></tr>'; } $context['help_text'] .= '</table>';