How to revert changes made by this plugin?
-
I am currently using SSL from CloudFront, so I figured that I wouldn’t need this plugin, that’s why I need to deactivate the plugin and the changes made by it.
Currently, when I checked Console using Inspection tool, the site has a lot of errors which I have no idea how these errors happen after SSL.I followed the link below:
, but for Step 3), I am not sure if these codes are suppose to be in wp-config.php
define(‘WP_SITEURL’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/’); –> this should be default
define(‘WP_HOME’, ‘https://’ . $_SERVER[‘HTTP_HOST’] . ‘/’); –> this should be default as well
if (isset($_SERVER[‘HTTP_CLOUDFRONT_FORWARDED_PROTO’])
&& $_SERVER[‘HTTP_CLOUDFRONT_FORWARDED_PROTO’] === ‘https’) {
$_SERVER[‘HTTPS’] = ‘on’;
}The page I need help with: [log in to see the link]
- The topic ‘How to revert changes made by this plugin?’ is closed to new replies.