un-loading https

Not tested, but give it a shot: function my_em_force_ssl() { if ( ! is_ssl() && em_is_event_page() ) { wp_redirect( str_replace( ‘http:’, ‘https:’, get_permalink() ) ); exit; } elseif ( is_ssl() && ! em_is_event_page() && $_SERVER[‘REQUEST_METHOD’] === ‘GET’ ) { wp_redirect( str_replace( ‘https:’, ‘http:’, add_query_arg( $_GET, site_url( $GLOBALS[‘wp’]->request ) ) ) ); exit; } } add_action( … Read more

Force SSL 100%?

If wordpress API gives you http instead of https it means that somewhere your data still contains HTTP, therefor you might need to take a more careful look at what urls are in your DB, for this specific functions you should look at your menus. But probably the simplest way to solve this issue to … Read more

How to disable https from wordpress site?

I think it’s in the wp_options table as ‘home_url’ and ‘base_url’, set both to start with http and Save the table in phpMyAdmin. If you can’t login still, disable plugin by renaming the folder. Still failing, check htaccess file and wp-config files for forced security.

What is the right way to redirect all traffic to HTTPS?

Number 1 If you want your website to be ONLY accessible through HTTPS, you will want to add this piece of code to your .htaccess file, replacing your domain’s name: <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L] </IfModule> This will redirect any visits from non-SSL to SSL version of your website. … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)