I wouldn’t recommend to delete <?php wp_head() ?>
. Some plugins use it to get code into your header, so some things might not work. You should move it right before the </head>
tag though! It’s also important to have the <?php wp_footer(); ?>
right before the </body>
tag.
Maybe it helps to just move the we_head, because it caused myself some trouble when I had it in the wrong position and not right before the head closing tag.
Hope it helps!