After struggling with the issue for about 3 hours, I gave up and posted the question on the support forum for my theme, and this was the response.. it's literally a 5 second fix, and it works great! (all props goes to Michael Novotny from the 8bit support forum)
So this works with an amazingly simple change to the header.php file. But first, an explanation...
What's important to know is that the Featured Content Gallery plugin uses the MooTools framework to do it thing. While this is not in and of itself a bad thing, using multiple frameworks is usually not recommended for instances exactly like this. The jQuery framework, which is included with Standard Theme and included for use with WordPress, is conflicting with the MooTools framework when MooTools is loaded before jQuery. All we need to do is load MooTools after jQuery and it will work. It works with the TwentyTen theme because it doesn't load jQuery (it doesn't utilize it by default).
So, the fix... All you need to do is pop open the header.php file and change this code...
- Code: Select all
<?php if ( is_single() ) wp_enqueue_script( 'comment-reply' );
standard_theme_libs(); ?>
wp_head(); ?>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/standard.min.js"></script>
<?php standard_analytics(true); ?>
...to this...
- Code: Select all
<?php if ( is_single() ) wp_enqueue_script( 'comment-reply' );
standard_theme_libs(); ?>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/standard.min.js"></script>
<?php wp_head(); ?>
<?php standard_analytics(true); ?>
All your essentially doing is moving the wp_head() function after the standard.min.js (which activates jQuery in the theme) and you'll be good to go!









