Update!
I wanted to update my post in case there is someone else out there who needs to ensure their website visitors are protected from clickjacking.
Thanks to the WIX Dev Team on Discord I was able to implement a great-work around.
“What this code will do is check if the page is the top-level window. If not, you can break out of the iframe and redirect to your site’s URL”
In Settings > Advanced > Custom Code input:
<script>
if (window !== window.top)
{ window.top.location.href = window.location.href; }
</script>
- Add Code to Pages: Load code on each new page (or specify specific pages.)
- Place Code in: Header (important)
- Code Type: Essential
The WIX Dev Team are awesome and were a huge help!