I have some elements on my site that appear to be there, but aren’t working properly.
Some of the content seems to be there (and it is there on the CMS) but it isn’t displaying properly. I have everything updated, but I’m unable to get these elements to work properly.
I’ve supplied login credentials for you to investigate.
Thanks,
Jeff D.
I added this to the function page and it worked.
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ‘https://code.jquery.com/jquery-1.11.3.min.js’);
wp_enqueue_script(‘jquery’);
}
}
add_action(‘init’, ‘modify_jquery’);
Thanks. Sorry I didn’t see that sticky note earlier.
Jeff D.