Hi,
Please advise what format a Skype social profile link should be in for theme options.
skype:username results in an empty href attribute.
Hey davidfourieza,
Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function ss_allow_skype_protocol( $protocols ){
$protocols[] = 'skype';
return $protocols;
}
add_filter( 'kses_allowed_protocols' , 'ss_allow_skype_protocol' );
then skype:username?call should work

Best regards,
Mike
