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', 'https://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', 'https://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 https:// to https://
Please check this screenshot- https://take.ms/2AmBt
This issue will be solved.
Have a nice day.