A quick squint at your site reveals that you’re serving it with Nginx, so a simple .htaccess
redirect won’t work.
The following block in your Nginx config should take care of any stray locally-served files that are still coming over http:
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
return 301 https://$host$request_uri;
}
If you were running Apache, the following in your .htaccess
before the WordPress section would achieve the same thing:
# HTTP to HTTPS
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>
The above is presented in lieu of tracking down the specific file, as the page no longer seems to be throwing the mixed content error.
Related Posts:
- How can I make an Ajax login form work with FORCE_SSL_ADMIN enabled?
- SSL redirect loop using WordPress HTTPS Plugin
- Is the WordPress HTTPS Plugin Still Safe To Use? [closed]
- Enable Full SSL for WordPress
- How can I make uploaded images in the editor load with HTTPS?
- How can I force users to a particular subdomain to log in for MU (Multisite)?
- How can I fix the mixed content problems of the kk star ratings plugin?
- redirected you too many times
- How do I convert my WordPress website to be domain agnostic?
- Is it safe to use Web Invoice 2.1.0 without SSL?
- www redirects to another directory in wordpress
- Mixed content error after adding SSL certificate
- Site navigation from Google not using HTTPS for some resources, causing redirect loop
- Why my multisite is this slow? (stats inside)
- How do I locate specific part of code that affects ssl?
- How do I secure a subdomain using UCC SSL?
- Theme causing SSL break on chrome
- Generate all urls with https
- SSL not working for checkout
- Can I upgrade a plugin to a specific version?
- Get plugin_dir_url() from one level deep within plugin
- How to have WordPress send a user confirmation/validation email on signup
- How do I disable a plugin enforced by my host (in mu-plugins)?
- Do Plugins effect site loading time?
- How to place random widgets in the WordPress sidebar?
- Auto login using Active Directory and Windows Authentication
- Should I use RIPS tool to test my themes and plugins?
- Plugin search sorting for admin section – WordPress [duplicate]
- How to disable autocomplete for inputs in contact form 7? [closed]
- Determining where fopen() is writing files when used from WordPress AJAX call [closed]
- Plugin Functionality Only for Editor and Administrator
- Plugin to hide admin menu (vertical menu bar)
- Building WordPress Plugin Using FPDF – How do you get post content from currently viewed post?
- Storing Email Account Passwords for SMTP Mailing for a WordPress Plugin
- Do you clean up your self-written plugins’ at deactivation?
- PHP Fatal error: Call to undefined function plugin_basename
- Restored WordPress on new Server – Can’t auto-update plugins
- How many SQL queries WP Super Cache make to serve cached page?
- omit / remove ” from category list
- Is any information available in PHP files in WP about plugin activation history?
- Download any file after submitting a form [closed]
- Call to undefined function get_userdata in user.php
- Use flash on a wordpress site as a widget
- remove_section in a plugin
- How to export all content with feature images?
- Cron Job not working in plugin
- this jQuery function works perfect in static html page but not on wordpress
- Run a plugin just ‘once’ per page reload
- Is it possible for a plugin to force reading and writing of uploaded images to a database instead of to a filesystem?
- $wpdb update query in plugin only updating one column
- Cropping images from top center using Jetpack Photon
- How to limit image size for the entire website ? But without editing the post (css/plugin?!)
- Set Multiple Meta Values as an Array Using dispatch( ‘core/editor’ ).editPost() Call in Gutenberg/JS
- Minimize and Uglify WordPress Plugin Files
- Post deleted in trash [closed]
- WordPress API functions not working at AJAX functions.php call
- How do I show content from a plugin using the template the site is currently working with?
- WP audio video player with previous next options
- Interface needed to transfer contents in a table on a web page to the Add New Product interface
- Need to setup grid like thumbnail of recent posts on sidebar
- Advanced Custom Fields Plugin – Images not displaying
- Save log for imports in WordPress database – options-table, custom post type or other place?
- page duplication on wordpress that wont stop
- the_posts_pagination() not working if I add wp_head() to header.php
- Need help with Task assigning and rewarding as currency which withdrawable
- Hide content for specific users with id
- adding dynamic/multiple slug values in ‘option_none_value’
- main navigation menu disappear after adding jquery source file
- How to pass all received IDs through the function for in_category
- Getting unknown text in footer of email
- Dynamical slug on custom post type
- Compare Ajax Data Results
- WordPress delete cookie
- Convert slugs on post publish
- Storing Array of values into wordpress options
- WordPress Add advertising ads befor and after content with periority [closed]
- Upload image to wordpress using ionic/cordova with WP REST API V2
- Every time I use wp_get_current_user() my plugin breaks
- woocommerce blank page after clicking add to cart [closed]
- Working plugin code breaks admin
- Plugin not installing properly, functions being redeclared
- WordPress automatic plugin update
- Use wordpress for school results?
- How to list posts that appear in two categories
- Woocommerce Bookings – Resource needs to be allocated for part of the booking duration, not the whole booking
- Load my plugin before cache
- How to get current template file used by WordPress?
- How to hide a piece of code from a wordpress web page?
- Make a magic tag work with Custom Post Types
- Bidding site plugin [closed]
- Editing a theme
- woocommerce create subscription for user using functions / hooks provided
- How can I save the selected page in the dropdown after anyone clicks on Save Changes?
- How can I display an attribute from each post inside foreach($latest_posts1 as $post )
- Wrong block appender button showing
- Check Plugins in Use by Mutli Site Network
- Plugin with Fatal error
- Uncaught Error: Cannot use object of type stdClass while showing the list using WP_List_Table
- Select posts from list and add them in a new list
- Plugin to transfer new/updated files from media library in “/wp-content/uploads/” between prod environment and preprod environment?