https images not displaying

Place this code in your functions.php. It will filter all of the content before serving on application layer. <?php function filterContent($content) { $upateURL = array ( ‘http://www.example.com/wp-content/uploads’ => ‘https://www.example.com/wp-content/uploads’, ); foreach ($upateURL as $key => $value) { $content = str_replace($key, $value, $content); } return $content; } add_filter(‘the_content’, ‘filterContent’); ?>

SSL Certificate

You probably need to change your ‘WordPress Address (URL)’ and ‘Site Address (URL)’ to include the ‘https’ instead of the ‘http’ in your WordPress settings page under: Settings -> General Settings If this doesn’t fix it, then try getting it working with the ‘Really Simple SSL’ plugin: https://en-gb.wordpress.org/plugins/really-simple-ssl/ Update After taking a look at your … Read more

How to force the admin-ajax.php file to load over HTTPS?

If you are using Domain Mapping plugin doing this will quickly achieve exactly what you are asking for. Go to: YOURDOMAIN/wp-admin/tools.php?page=domainmapping Under: Excluded pages, check: Force SSL for all pages. Save and you’re done. Your insecure mixed content error due to admin-ajax.php loading via http instead of via https should be gone after this.

Problem forcing San SSL certificate on WordPress

To find mixed content on your pages use a site such as https://www.whynopadlock.com In doing so you will find the following image http://gingerhippo.com/wp-content/uploads/2018/04/uses-of-the-yellow-pages.jpg being loaded by the page https://gingerhippo.com/2018/05/customer-journey/ If you use Firefox, most mixed content is easily found by viewing the offending page, clicking the padlock icon & clicking More Information and viewing the … Read more