1. PrettyWP
  2. PrettyWP Guides
  3. Tutorials
  4. A Step-by-Step Guide to Fixing Mixed Content Issues on Your WordPress Website

A Step-by-Step Guide to Fixing Mixed Content Issues on Your WordPress Website


Mixed Content occurs when a secure (HTTPS) webpage contains both secure and insecure (HTTP) elements, such as images, scripts, or stylesheets. This can compromise the security of your website and lead to warnings or issues for your visitors. In this guide, we will explore what you need to know about mixed content and provide step-by-step solutions to fix it.

Understanding Mixed Content

When a webpage is loaded over HTTPS, all elements on that page should also be served securely. However, if some resources, such as images or scripts, are loaded over HTTP, the browser considers it mixed content. Modern browsers actively warn users about mixed content, potentially causing trust issues and affecting your website's user experience.

Identifying Mixed Content

To identify mixed content on your website, load your pages using HTTPS and inspect them for any warnings in the browser's developer console. Browsers often display a lock icon with a warning symbol in the address bar, indicating mixed content. Additionally, the developer console provides specific warnings about insecure elements, allowing you to pinpoint the problematic resources.

Fixing Mixed Content: Here are the steps to fix mixed content issues on your website:

  1. Identify the insecure elements: Using the information from the browser's developer console, identify the specific resources (e.g., images, scripts, stylesheets) that are loaded over HTTP and causing mixed content warnings.

  2. Update internal links to use HTTPS: Update all internal links within your website to use HTTPS instead of HTTP. This includes links in your content, theme files, and plugins. For example, change "http://example.com/image.jpg" to "https://example.com/image.jpg". Update these links across your entire website.

  3. Update external resources to HTTPS: For external resources, such as scripts or stylesheets hosted on other domains, check if the provider offers HTTPS versions of those resources. If available, update the URLs to use the secure version. If HTTPS versions are not available, consider finding alternative resources or hosting them locally on your secure server.

  4. Fixing insecure embedded content: If you have embedded content, such as videos or iframes, ensure that they are served securely. Use the HTTPS versions of the embedded content or modify the embed code to use HTTPS URLs.

  5. Update your WordPress settings: In your WordPress admin dashboard, navigate to "Settings" --> "General". Ensure that the WordPress Address (URL) and Site Address (URL) fields start with "https://" to reflect your secure website URL.

  6. Implement a content security policy (CSP): Consider implementing a content security policy (CSP) to restrict the loading of insecure content. A CSP allows you to specify which resources are allowed to be loaded on your website, further enhancing security. Use plugins like "Content Security Policy" or "Security Headers" to easily set up and manage CSP rules.

  7. Test and verify: After making the necessary changes, thoroughly test your website to ensure that all resources are now loaded securely. Check different pages and various elements to verify that the mixed content warnings have been resolved.


Mixed content can impact the security and user experience of your website. By understanding the concept of mixed content and following the steps outlined in this guide, you can effectively identify and fix any mixed content issues on your WordPress site. Maintaining a secure environment for your visitors helps build trust and ensures a smooth browsing experience. Regularly check your website for mixed content, especially after making updates or adding new elements, to maintain a secure and fully HTTPS-compliant website.

Previous How to Fix WordPress Keeps Logging Out Issue
Next How to Fix 'The Link You Followed Has Expired' Error