Hi everyone,
Whenever I go to my url website, it doesn't load and instead redirects with the following: "http://www.mywebsite.com/?framerequest=1&refurl="
I've tried disabling all my plugins, no changes. I then right-clicked to view my page source and looks like it's a javascript that is causing this:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
<title></title>
<script type="text/javascript">
StaticRequestInfo={Referer:document.referrer};function EscapeBrowserFrame(){try{if(window.top.location==window.self.location){}else{window.top.location.href=document.location.href}}catch(Error){}}function SetRequestTitle(){document.title=document.domain}function InitiateFrameRequest(){var a="";var b="";if(window.location.search.indexOf("?")==0){b="& framerequest=1"}else{b="?framerequest=1"}b+="&refurl="+encodeURIComponent(StaticRequestInfo.Referer);a=window.location+b;document.write("<frameset rows=\"100%,*\" frameborder=\"no\" border=\"0\" framespacing=\"0\"><frame src=\""+a+"\" name=\"landingparent\"><\/frameset>")}SetRequestTitle();EscapeBrowserFrame();
</script>
</head>
<script type="text/javascript">
InitiateFrameRequest();
</script>
<body>
<noscript>
<meta http-equiv="refresh" content="0;url=/?framerequest=1">
</noscript>
<noframes>
<meta http-equiv="refresh" content="0;url=/?framerequest=1">
</noframes>
</body>
</html>
Where can I find this in my wordpress to delete/remove it? I've tried looking in my header.php and functions.php but I can't seem to find it? If anyone knows where that javascript code is that would be great.