Hi,
I've been using Thematic for a while now and love it. However, with the recent release I am having trouble loading .js files.
In the past I'd simply insert them into the wp_head() and they worked flawlessly. Not so anymore. I thought I'd open up "scripts.php" in the Extensions folder and try adding them there. Followed the same syntax, but no luck. Is scripts.php meant to only control the supplied scripts? I imagine we should be able to put the calls there...
I've tried:
<script src="<?php bloginfo('template_directory'); ?>/js/coda-slider.js" type="text/javascript" charset="utf-8"></script>
<?php wp_enqueue_script('submenu', get_bloginfo('template_url') . '/js/submenu.js' ?>
..and adding just the script name in Scripts.php like so:
$scripts .= $scriptdir_start . 'coda-slider.js' . $scriptdir_end . "\n";
I'm at a loss and really need this to work. I'm sure I'm missing something easy...