Hi,
Profit Theme Lite with Profit Theme Engine on WP4.7 produces broken email and skype links in contacts widget.
This is the fixed code:
<?php if ( !empty( $email ) ) : ?>
<li class="contact-email">
<i class="fa fa-envelope-o"></i><div class="contact-content"><a href="<?php echo esc_url( 'mailto:' . $email ); ?>"><?php echo esc_html( $email ); ?></a> </div>
</li>
<?php endif ?>
<?php if ( !empty( $skype ) ) : ?>
<li class="contact-skype">
<i class="fa fa-skype"></i><div class="contact-content"><a href="<?php echo esc_url( 'skype:' . $skype, array('skype') ); ?>"><?php echo esc_html( $skype ); ?></a></div>
</li>
<?php endif ?>