XF 2.2 SEO: remove h3-tags from widget block titles in sidebar and leave Headlines for more important content?

nocte

Well-known member
XF widget blocks in the sidebar usually have a title like this:

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. 🤔
 
Top Bottom