Remove Redundant Alt Nav
Add this to the template near the footer.
<!-- Fix for redundant title attributes -->
<script>
// Fix for redundant title attributes on all links
document.addEventListener('DOMContentLoaded', function() {
// Target all links on the page
var allLinks = document.querySelectorAll('a');
// Remove redundant title attributes
allLinks.forEach(function(link) {
if (link.title && link.textContent.trim() &&
link.title.toLowerCase() === link.textContent.trim().toLowerCase()) {
link.removeAttribute('title');
}
});
});
</script>