Hi @bobsd99 it’s working one of my site.
You can try this.
function blank_fuction_theme_svg_icons () {
// your code goes here
}
function theme_svg_icons_remove () {
remove_action( ‘wp_footer’, ‘twentyseventeen_include_svg_icons’, 9999 );
add_action( ‘wp_footer’, ‘blank_fuction_theme_svg_icons’, 10000 );
}
add_action( ‘after_setup_theme’, ‘theme_svg_icons_remove’ );