Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1354074

    Hi,

    Please advise what format a Skype social profile link should be in for theme options.

    skype:username results in an empty href attribute.

    #1354177

    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
    2022-06-04_011.jpg

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.