This page is trying to load scripts from unauthenticated sources
-
Hi,
I noticed the above error on my site. I had to change the following lines in forms-contact.php in order to fix the problem. As you can see a non TLS URL is being accessed. I just added the ‘s’ and all’s well.
wp_enqueue_style(“jquery_ui_new”, “https://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css”, FALSE);
wp_enqueue_style(“jquery_ui_new”, “https://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css”, FALSE);
wp_enqueue_script(“jquery_ui_new2”, “https://code.jquery.com/ui/1.10.4/jquery-ui.js”, FALSE);
wp_enqueue_script(“jquery_ui_new2”, “https://code.jquery.com/ui/1.10.4/jquery-ui.js”, FALSE);
wp_enqueue_script(“jquery_ui”, “https://code.jquery.com/ui/1.10.4/jquery-ui.js”, FALSE);Thanks
- The topic ‘This page is trying to load scripts from unauthenticated sources’ is closed to new replies.