Browsers throw mixed content warnings for sites using SSL. Here's the fix:
dcwp_plugin_admin.php:
Replace all instances of
WP_CONTENT_URL . "/plugins/"
with
plugins_url()
dcwp_social_media_tabs.php:
Replace
function get_plugin_directory(){
return WP_PLUGIN_URL . '/social-media-tabs';
}
with
function get_plugin_directory(){
return plugins_url() . '/social-media-tabs';
}
You could even be more flexible by using this to accomodate folks who rename the 'social-media-tabs' directory to something different:
return plugins_url() . '/' . dirname(__FILE__);