wordpress - Problems with javascript after installing SSL -
i have installed ssl certificate in website (it uses wordpress) , have got incompatibilities javascript. using plugins cookie law info , lightbox, not working anymore. use own basic js code , not working neither. may happen?
after ssl installation, did following:
- change wordpress address (url) new 1 https
add following code in .htaccess file:
rewriteengine on rewritecond %{server_port} 80 rewriterule ^(.*)$ https://ipd2004.com/$1 [r,l]
add these 2 lines in wp-config.php file:
define('force_ssl_login', true); define('force_ssl_admin', true);
i hope can me fixing issue. thank you!
browsers typically refuse load http assets images, css, js on https page (called "mixed content"). ensure javascript libraries (including rely on, jquery) loaded via https too.
this'll visible in browser's web developer console.
Comments
Post a Comment