Forum Moderators: not2easy
when I want external http content to disappear on https pages I enclose the external content like this:
PHP Code:
<?php if (!$_SERVER['HTTPS']){ ?>
<!-- external content here -->
<?php } ?>
I use this code to display social bookmarking widgets only on http pages and not on https pages.