Gumboots wrote: Sat Aug 03, 2024 10:45 pmETA: Incidentally, in default form that link is terrible for a11y. It has no available description of what it does, not even the dreaded title attribute. Obviously a pseudo won't help for screen readers either. It really needs a proper language string.
Out of the default language strings, the most likely suspects for hijacking are probably these:Code: Select all
'POST_DISPLAY' => 'Display this post', 'JUMP_TO_PAGE' => 'Jump to page',
Either of those would be a reasonable fit for this purpose. The relevant code seems to be this (prosilver/template/bbc.html):Code: Select all
<a href="{@msg_url}" data-msg-id="{@msg_id}">↑</a>
So you could change that to one of these options:Code: Select all
<a href="{@msg_url}" data-msg-id="{@msg_id}">{L_GOTO_PAGE} ↑</a>
Code: Select all
<a href="{@msg_url}" data-msg-id="{@msg_id}">{L_POST_DISPLAY} ↑</a>