Here's a question that I just figure out. My site is trying to load .css files for some of the javascript that I removed. I can't find in the header or functions files where these are being requested. How do I find and remove those requests? These two in particular are the one's that are giving me issues.
Code:<link rel='stylesheet' id='nivo-slider-css' href='/wp-content/themes/Gameleon/css/nivo-slider.css?ver=3.5.1' type='text/css' media='all' /> <link rel='stylesheet' id='news-ticker-css' href='/wp-content/themes/Gameleon/css/news-ticker.css?ver=3.5.1' type='text/css' media='all' />
Have a look for:
@import url("css/news-ticker.css");
in style.css
and:
wp_register_style('news-ticker', get_template_directory_uri() . '/css/news-ticker.css' );
in custom_css.php