Title: wp-admin SSL loads resources http
Last modified: October 23, 2016

---

# wp-admin SSL loads resources http

 *  Resolved [EastDevonAlliance](https://wordpress.org/support/users/eastdevonalliance/)
 * (@eastdevonalliance)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/)
 * Just started to implement SSL for our admin pages and I get warnings about mixed
   mode content in wp-admin including the-event-calendar for the following files:
 * /wp-content/plugins/the-events-calendar/common/src/resources/css/dependency.min.
   css?ver=4.3.1
    /wp-content/plugins/the-events-calendar/common/src/resources/css/
   bumpdown.min.css?ver=4.3.1 /wp-content/plugins/the-events-calendar/common/src/
   resources/css/tribe-common-admin.min.css?ver=4.3.1 /wp-content/plugins/the-events-
   calendar/common/vendor/jquery/ui.theme.css?ver=4.3.1 /wp-content/plugins/the-
   events-calendar/common/vendor/jquery/ui.datepicker.css?ver=4.3.1 /wp-content/
   plugins/the-events-calendar/common/src/resources/js/dependency.min.js?ver=4.3.1/
   wp-content/plugins/the-events-calendar/common/src/resources/js/pue-notices.min.
   js?ver=4.3.1 /wp-content/plugins/the-events-calendar/common/vendor/clipboard/
   clipboard.min.js?ver=4.3.1 /wp-content/plugins/the-events-calendar/common/src/
   resources/js/tribe-common.min.js?ver=4.3.1 /wp-content/plugins/the-events-calendar/
   src/resources/js/aggregator-facebook-login.min.js?ver=4.3.1.1
 * Knowing that support time is limited, I will try to find the time to read the
   code and see if I can work out what the fix should be.
 * Thx.

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

 *  Thread Starter [EastDevonAlliance](https://wordpress.org/support/users/eastdevonalliance/)
 * (@eastdevonalliance)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8344093)
 * Apologies – but this is a known issue with WordPress not an issue with this plugin.
 * I installed a new plugin to fix this and it sorted it.
 *  [andresgrossmann](https://wordpress.org/support/users/andresgrossmann/)
 * (@andresgrossmann)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8350089)
 * How did you fix this? What plugin did you use? I just recently started getting
   this issue with The Events Calendar (no other plugin is loading http) after the
   last update.
 *  Thread Starter [EastDevonAlliance](https://wordpress.org/support/users/eastdevonalliance/)
 * (@eastdevonalliance)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8359889)
 * SSL Insecure Content Fixer
 *  [Will Earnhardt](https://wordpress.org/support/users/earnjam/)
 * (@earnjam)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8391946)
 * This happens when you force admin SSL, but not SSL on the front end. I had the
   same problem. It is because they changed the way they generate the asset URLs.
 * They now use the `WP_CONTENT_URL` constant, which interestingly enough, the codex
   say explicitly not to use (probably for reasons like this). See: [https://codex.wordpress.org/Determining_Plugin_and_Content_Directories](https://codex.wordpress.org/Determining_Plugin_and_Content_Directories)
 * Fortunately there is a filter on the return of the `tribe_resource_url()` function,
   so you can fix it like this:
 *     ```
       add_filter( 'tribe_resource_url', 'fix_tribe_resource_url', 10, 2 );
       function fix_tribe_resource_url( $url, $resource ) {
       	if ( is_ssl() ) {
       		$url = str_replace( 'http', 'https', $url );
       	}
       	return $url;
       }
       ```
   
 *  [Clifford Paulick](https://wordpress.org/support/users/cliffpaulick/)
 * (@cliffpaulick)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8400518)
 * William, I’ve passed that information along to our developers; thank you for 
   it.
 * Everyone else, this is a known bug that our developers will address.
 * If you set both your Home URL and Site URL to HTTPS, you shouldn’t be affected
   by this bug.
 * Thank you for using our plugin.
 *  [ggwicz](https://wordpress.org/support/users/ggwicz/)
 * (@ggwicz)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8445937)
 * Hello!
 * I wanted to inform you that we’ve just published a series of updates to our products
   that fixes a number of issues.
 * These updates should include fixes for the problems reported here, where our 
   plugins’ scripts and stylesheets were being served over HTTP when they should’ve
   been served over HTTPS, or vice versa.
 * Learn more about this release—version 4.3.3—in the official release notes here
   → [https://theeventscalendar.com/maintenance-release-events-calendar-4-3-3-event-tickets-4-3-3-premium-plugins/](https://theeventscalendar.com/maintenance-release-events-calendar-4-3-3-event-tickets-4-3-3-premium-plugins/)
 * Thanks for your patience in waiting for a fix!
    George

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

The topic ‘wp-admin SSL loads resources http’ is closed to new replies.

 * ![](https://ps.w.org/the-events-calendar/assets/icon-256x256.gif?rev=2516440)
 * [The Events Calendar](https://wordpress.org/plugins/the-events-calendar/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/the-events-calendar/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/the-events-calendar/)
 * [Active Topics](https://wordpress.org/support/plugin/the-events-calendar/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/the-events-calendar/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/the-events-calendar/reviews/)

 * 6 replies
 * 5 participants
 * Last reply from: [ggwicz](https://wordpress.org/support/users/ggwicz/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/wp-admin-ssl-loads-resources-http/#post-8445937)
 * Status: resolved