How to delete a Title html attribute so that it doesn't appear as a tooltip upon hover?

Yes, you can remove the title using the javascript

var linkElement = document.querySelector(‘a[title=“best-dog-ever-dog-bandana-collar”]’);
if (linkElement) {
linkElement.removeAttribute(‘title’);
}