Hi timecode,
I got it working on my website by using the https:// URL in Settings-General, and installing the “SSL Insecure Content Fixer” plugin (in the plugins settings, I use “Content”). Finally, I redirect all http requests to https with the following lines in the .htaccess:
#enable SSL
RewriteCond %{HTTP_HOST} ^pierreetleloup\.info$ [OR]
RewriteCond %{HTTP_HOST} ^www\.pierreetleloup\.info$
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.pierreetleloup.info/$1 [R,L]
# END enable SSL
You might want to try this 😉 I know it might be an overkill, and maybe some of these steps are redundant, but anyway it works fine now!
Cyril
In case you want to check, my website is -https://www.pierreetleloup.info
Thank you lecyril
I used the following:
- Settings-General-WordPress Address (URL): https://mydomain.com
- Install plugin “SSL Insecure Content Fixer” (with this plugin’s settings set to “Content”)
I use CloudFlare and have their “Always use https” function switched ‘on’, so I didn’t modify the .htaccess file.
Many thanks 🙂