nocte
Well-known member
XF widget blocks in the sidebar usually have a title like this:
Wouldn't it make sense - from a SEO-perspective - to replace these
Most of these widget blocks are not important content-wise.
I am quite sure this change can easily be achieved with an event listener and a regex replace.
HTML:
<h3 class="block-minorHeader"><a href="/community/members/?key=staff_members">Staff online</a></h3>
Wouldn't it make sense - from a SEO-perspective - to replace these
h3
-tags with div
-tags, so e.g:
HTML:
<div class="block-minorHeader"><a href="/community/members/?key=staff_members">Staff online</a></div>
Most of these widget blocks are not important content-wise.
I am quite sure this change can easily be achieved with an event listener and a regex replace.