I have a wordpress plugin which automatically adds jQuery "file" line to my website header, e.g.
<link rel='stylesheet' id='wp-postratings-css' href='http://domain.com/wp-content/plugins/wp-postratings/postratings-css.css?ver=1.8' type='text/css' media='all' />
I don't need this line because it refers to old version of jQuery plus I already have jQuery file included prior. I tried to disable following default wordpress functions "wp_enqueue_script", "wp_print_scripts('jquery')" but it didn't worked.
Any ideas? Thanks
wp_enqueue_scriptandwp_print_scriptshave nothing to do with stylesheets. Have you tried simply disabling the plugin?