Show widget when not using SSL

WordPress has built-in function for this purpose – is_ssl().
http://codex.wordpress.org/Function_Reference/is_ssl

So, you should edit this widget and put something like

if ( is_ssl() ) {

} else {
    echo 'you should use ssl';
}