Hey Kev,
Have you checked your console for any errors that might indicate the cause of the issue yet?
Please advise
Peter
yeah, nothing really flags up
Hey there,
I’ve just checked all the sites myself and they all have fatal console errors?
Please advise
Peter
ah, sorry – I did a little googling and found what you meant and I thought differed
OK, found it on the console – the next headache is I’ve no idea how to fix it – many suggestions I’ve also found via google seem to be right
Hey there,
The error just says that jquery is not installed on your site so you will just need to include it.
It should come as part of WordPress so I’m not sure why it’s been removed.
Peter
this does seem odd
I added this to my functions.php
function include_jQuery() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js’, false, ‘1.8.3’);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘include_jQuery’);
this should include it – but – it’s now not loading on my PC, but still loading on my phone, but, the plugin still isn’t working
Hey there,
You have the same console errors on mobile so you need to make sure it’s being added on there too.
Peter