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
- Sudden ERR_HTTP2_PROTOCOL_ERROR on every JS and CSS files loads
- WP Mail SMTP Plugin Fails Certificate Verification [closed]
- Is SSL connection of plugins default?
- How to include code only on specific pages?
- Can a developer adopt a plugin marked as “not updated in over 2 years”?
- Check if add_menu_page exists or not
- Woocommerce hook after creating order? [closed]
- Help with 4.6. Attachment response object in JSON API plugin
- Prevent publishing the post before setting a featured image?
- Gutenberg: Error loading block: Invalid parameter(s): attributes but it can be used in the code
- Disable qTranslate by post type in admin + disable per page / post ID on front-end [closed]
- How get list of updates of wp site?
- Show missing Sidebar from Gutenberg admin area
- How to load different css file for different pages
- Best way to diagnose which plug-ins/theme uses the most memory?
- How can I attach images to a post from the media library?
- Override Widget class in plugins with custom plugin
- How to prevent a function execution with another function?
- Overrides Plugin Files on WordPress Themes
- Custom rewrite rule is not picked by WordPress
- How can I execute some small piece of PHP code in a sandbox area of my WP?
- Author Specific URL’s in WordPress
- Activating a single plugin via php
- How to install a plugin for a free WordPress site? [duplicate]
- WordPress Plugin Look & Feel
- Does Quantity of files in a plugin affect performance?
- Why is my ajax call refreshing the page?
- Add CSS class to add-to-cart button, Woocommerce [closed]
- How to see list of plugins
- Localize Plugin Description
- Display future posts?
- Can’t find plugins in menu for wordpress 3.2?
- plugin to search entire posts, blogs, forum, users [closed]
- How to add pagination to wpbakery grid?
- What is the way to ship read-me strings like plugin-strings for internationalization?
- Override plugin text domain in child theme
- update_user_meta add value on the top on existing value
- Can a plugin still effect a site even after deletion?
- How to get variables from fucntion.php to my plugin files
- Delete Associated Media Upon Page / Post Deletion
- Why wp_mail() function isn’t sending any emails and displaying ‘0’ in Chrome ‘Network’ response
- How to get number of Affected rows from wordpress dbDelta() function
- What function can I use consistently to escape possible HTML for editing and display?
- Ultimate Member: Redirecting after registration
- How to disable specific plugin in mobile version?
- Headers already sent when I try to add headers via a shortcode
- Test files for plugin development
- CodeColorer: Allow Some Symbols in Java Language
- Outbound Click Tracking
- Error with Image Slide plug-in/ s3slider in WP
- how to create site exit messages with destination url displayed
- Magazine subscription sales through WP?
- How to add an automatic refresh in WordPress for a Page/Post or an embedded OneDrive/Excel HTML Code?
- File Storage and Repository for individual user
- Changing “elapsed time” to “time remaining” on MP3-jPlayer audio player with CSS or PHP changes
- Ctrl+V images from clipboard into wordpress editor
- WordPress Backend HA (Automatic failover)
- Collect user information when click on download link [closed]
- WordPress Homepage Login
- How can I get the permalink of a page on which shortcode has been used
- How to put tags on photos in Windows that WordPress can read and apply on media files?
- List category-posts not work properly
- Auto-scroll to beginning of accordion item
- A splash page on landing page
- I cannot login after installing the wp-login timeout setting plugin
- How to trigger plugin migration code when plugin updates?
- Fatal Error in my WP “Call to undefined function get_option()”
- Issue using form in Google app in mobile
- No WP-Content Folder in Website Files, No Ability to Disable Plugins Manually
- Product image import
- Allowing users to install a predefined bundle of plugins and themes with one action
- Uncaught ArgumentCountError
- Secure way to add JS Script to WordPress filesystem
- Not applying update field (acf) in my plugin
- WP galleries in posts after import. How do I do it?
- How do I apply different block supports to different parts of my custom block?
- Remove 3rd party plugin notices from within own plugin
- How to add entity in WordPress that have metadata such as name, age
- Edit Image button disappears when I make WordPress use Imagick instead of GD
- Order Posts Using Taxonomy Term Facetwp [closed]
- Is there potential plugin incompatibility if theme has no header.php and footer.php?