Problem of Unsafe cross origin links on the site

Hello Fellow Webflow pro,

I have a problem with “unsafe cross-origin links” on all the links created on this website. This makes the link unclickable on some browsers.

The problem appears when we upload CMS content in thought CSV files.
All our links were like this one in the HTML code we uploaded.
EG:

<a href="https://examplepetstore.com" target="_blank"> BUT they should have been link this <a href="https://examplepetstore.com" target="_blank" rel="noopener">

What we did to try to fix the problem:
1/removing all the links and recreating them manually.
2/Implementing this javascript code.

function setRelAttribute() { var elems = document.body.getElementsByTagName('a'); for (var i = 0; i < elems.length; i++) { var elem = elems[i] var re = /mydomain.com/ var isInternal = re.test(elem.href) if (!isInternal) { elem.rel= 'noopener noreferrer nofollow' } } } document.addEventListener('DOMContentLoaded', function () { setRelAttribute() }, false);

I picked up this code on this converstion:

3/Add custom data attribute to the link in the rich text that is used with the CMS

But nothing seems to work.
Could you please tell me how to fix this, or is there anyways from your side to remove this to the site?
Thanks
Here is a share link:
https://preview.webflow.com/preview/debouchage?utm_medium=preview_link&utm_source=designer&utm_content=debouchage&preview=3c379c22c75a1399b4b82b1d5fd5bc97&pageId=62a2cb3187f65471d0fae527&workflow=preview