Please fix the bug that is blocking the plugin to work on HTTPS website
-
Bug pops-up in the console:
Mixed Content: The page at ‘https://www.LandingPAGE.COM’ was loaded over HTTPS, but requested an insecure stylesheet ‘http://www.LandingPAGE.COM/wp-content/plugins/content-protector/assets/public/passster-public.min.css?ver=3.5.5.7’Fix (content-protector.php):
Replace this:
define( ‘PASSSTER_PATH’, untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( ‘PASSSTER_URL’, untrailingslashit( plugin_dir_url( __FILE__ ) ) );With this:
define( ‘PASSSTER_PATH’, plugin_dir_path( __FILE__ ) );
define( ‘PASSSTER_URL’, plugin_dir_url( __FILE__ ) );
The topic ‘Please fix the bug that is blocking the plugin to work on HTTPS website’ is closed to new replies.