Most likely (99%), the problem is the fact that your theme loads a second jQuery file instead of using the one provided by WordPress. I would suggest that you use the default jQuery file but before doing that, make sure all other scripts are working.
Thread Starter
novina
(@novina)
sorry, but at which file do i check and replace the jquery link?
Thread Starter
novina
(@novina)
sorry, but at which file do i check and replace the jquery link?
i’m looking at function.php (i think that’s where the jquery script may be located), but I can’t seem to find any link to jquery files. is it possible the theme doesn’t have one…?
if not, how do i add one…?
Thread Starter
novina
(@novina)
oh sorry, found it at header.php,
it looks like this is the jquery file included, is that the one provided by wordpress?
wp_enqueue_script(‘jquerymenu’, get_bloginfo(‘template_directory’) . ‘/js/jquery.js’,
No, WordPress jQuery is something like this:
wp_enqueue_script(‘jquery’);
Yours is coming from your theme ( get_bloginfo(‘template_directory’) is the path to your active WP theme ).