1) In the htaccess file, replace the text with this: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> 2) In the wp-config file, add this: define(‘FORCE_SSL_ADMIN’, true); 3) Force SSL across the site by setting this in wp-config too: define(‘WP_HOME’,’https://example.com’); define(‘WP_SITEURL’,’https://example.com’);
Category archives: Cheeky Wordpress tricks
Jetpack contact form placeholders
Jetpack is rapidly zooming beyond its early reputation as the slow boat to China, and becoming a plugin to be reckoned with – as a suite of goodies rather than a single function plugin. Today I tried out the contact form in Jetpack. Previously, I have almost always used the magnificent Contact Form 7, and …