Title: Scrips not loading over https
Last modified: September 28, 2017

---

# Scrips not loading over https

 *  Resolved [paul-r](https://wordpress.org/support/users/paul-r/)
 * (@paul-r)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/scrips-not-loading-over-https/)
 * The jquery-ui library [http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css](http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css)
   is not loading over https and this causes a “Mixed content” error when a website
   is loaded over https.
 * Maybe change it to //ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-
   ui.css
    -  This topic was modified 8 years, 8 months ago by [paul-r](https://wordpress.org/support/users/paul-r/).

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [FahimMurshed](https://wordpress.org/support/users/fahimmurshed/)
 * (@fahimmurshed)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/scrips-not-loading-over-https/#post-9541350)
 * Hello,
 * Thanks for your post. It’s easy to solve this issue.
 * Go to open this files-
 * /wp-content/plugins/wp-crowdfunding/addons/reports/reports.php
 *     ```
                   wp_enqueue_script( 'field-date-js', plugins_url( '/assets/js_reports.js', __FILE__ ), array('jquery', 'jquery-ui-core', 'jquery-ui-datepicker'), time(),true );
                   wp_register_style('jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css');
                   wp_enqueue_style( 'jquery-ui' );
               }
       ```
   
 * and
 * /wp-content/plugins/wp-crowdfunding/includes/class-wpneo-crowdfunding-base.php
 *     ```
               /**
                * Registering necessary js and css
                * @frontend
                */
   
               public function wpneo_enqueue_frontend_script(){
                   wp_enqueue_script( 'jquery' );
                   wp_enqueue_script( 'jquery-ui-datepicker', array( 'jquery' ) );
                   wp_register_style( 'jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css');
                   wp_enqueue_style( 'jquery-ui' );
                   wp_enqueue_script( 'wp-neo-jquery-scripts-front', WPNEO_CROWDFUNDING_DIR_URL .'assets/js/crowdfunding-front.js', array('jquery'), WPNEO_CROWDFUNDING_VERSION, true);
                   wp_localize_script( 'wp-neo-jquery-scripts-front', 'ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
                   wp_register_style( 'neo-crowdfunding-css-front', WPNEO_CROWDFUNDING_DIR_URL .'assets/css/crowdfunding-front.css', false, WPNEO_CROWDFUNDING_VERSION );
                   wp_enqueue_style( 'neo-crowdfunding-css-front' );
                   wp_enqueue_media();
               }
       ```
   
 * Change **http://** to **https://**
 * Please check this screenshot- [http://take.ms/2AmBt](http://take.ms/2AmBt)
 * This issue will be solved.
 * Have a nice day.
 *  Thread Starter [paul-r](https://wordpress.org/support/users/paul-r/)
 * (@paul-r)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/scrips-not-loading-over-https/#post-9541388)
 * I had already done that, but when when they bring out a plugin update my changes
   will be gone 😉
    I hope they will change it in their code too 😉
    -  This reply was modified 8 years, 8 months ago by [paul-r](https://wordpress.org/support/users/paul-r/).
 *  [FahimMurshed](https://wordpress.org/support/users/fahimmurshed/)
 * (@fahimmurshed)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/scrips-not-loading-over-https/#post-9541539)
 * We’ll fix it and release the updated version soon.
 * I have a request to give 5-star rating with your valuable comment on [https://wordpress.org/support/plugin/wp-crowdfunding/reviews/](https://wordpress.org/support/plugin/wp-crowdfunding/reviews/)
 * It inspires us to make the better product and improve support quality.
 * Thank you so much.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Scrips not loading over https’ is closed to new replies.

 * ![](https://ps.w.org/wp-crowdfunding/assets/icon-256x256.jpg?rev=3262578)
 * [WP Crowdfunding](https://wordpress.org/plugins/wp-crowdfunding/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-crowdfunding/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-crowdfunding/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-crowdfunding/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-crowdfunding/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-crowdfunding/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [FahimMurshed](https://wordpress.org/support/users/fahimmurshed/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/scrips-not-loading-over-https/#post-9541539)
 * Status: resolved