So yeah, edit
rellect_favicon.css template.
And then on line 1, replace:
with:
Code:
.baseHtml a.setFavicon, .ugc a.setFavicon
and also on line 14, replace:
with:
Code:
.baseHtml a.rtlFavicon, .ugc a.rtlFavicon
It's simply so that the styling will also be applied to the shoutbox (its message line uses ugc class ~ ).
And then, edit
js/rellect/FaviconForLinks/FaviconForLinks.js of the add-on. Look for line 42, and you'll find an array there. Simply add ".ugc a.externalLink" (and ".ugc a.internalLink" if you want to enable internal link) to the array.
It'll look like this:
Code:
linkGroups = [
".baseHtml a.internalLink",
".baseHtml a.externalLink",
".signature a.internalLink",
".signature a.externalLink",
".ugc a.externalLink"
];
Note: The example above doesn't have internal link enabled on shoutbox.
On my case, since the add-on already have options to disable certain type of links on messages and signatures, I already disabled internal link for both of them from the options. Thus I only added external link for shoutbox on the array.
ALSO, if you enabled Minify on Admin CP options, don't forget to update the minified version as well (
FaviconForLinks.min.js, that is).