Viewing 1 replies (of 1 total)
  • Plugin Author Paul Clark

    (@pdclark)

    Adding this code to your theme’s functions.php should remove the mailto: option:

    add_filter( 'storm_social_icons_networks', 'storm_social_icons_networks');
    function storm_social_icons_networks( $networks ) {
        unset( $networks['mailto:'] );
        return $networks;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove mailto: links turning into email icon’ is closed to new replies.