@the Word – Thanks! That was exactly what I needed. It looks like you probably don’t have a method in your theme that is needed to add the required scripts to the page.
Take a look at your theme’s footer.php template for the method wp_footer()
, if you don’t find it there – add the following bit of code to the template before the closing </body>
tag:
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
That should do it, let me know if you have any trouble with it!