• Resolved hassaanbinmasham1

    (@hassaanbinmasham1)


    So basically, I’m a developer and I had an SSL linked to my website which got expired last year but the site was still going fine, Now for the sake of testing I took back-up of my site and tried this plugin, The plugins worked wonderfully fine but I accidentally clicked on force https, now when I uninstall the plugin or certificate the site goes nuts and redirects me to some other random URL.

Viewing 1 replies (of 1 total)
  • Plugin Author WP Encryption SSL

    (@gowebsmarty)

    @hassaanbinmasham1 Hello,

    Login to your phpmyadmin, navigate to wp_options table and change site url & home url to https:// version. That should bring back your http site. You can rename the wp-letsencrypt-ssl plugin folder via FTP to temporarily disable the plugin.

    You can disable force https by adding below code to bottom of functions.php file in your active theme and loading your site once. Later, you can enable the plugin which will have force https disabled.

    add_action('init', 'wple_remove_https');
    function wple_remove_https(){
    delete_option('wple_opts');
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How to uninstall?’ is closed to new replies.