hardcoded wp pages/plugins problems

A number of plugins inject some code into wp_head() therefore you need to ensure this is included in header.php. Check, if its not included, add it just before the closing </head> like so:

    ...
    ...
    <?php wp_head(); ?>

</head>

Hope that helps.