Please add following code in active theme functions.php
/* svg code render */
function get_svg_inline($path, $style = '') {
if ( stripos( $path, '://' ) !== FALSE ) {
$path = str_replace( get_bloginfo('url'), ABSPATH, $path );
$path = str_replace( '//', '/', $path );
}
$svg = file_get_contents($path);
if ( $style ) {
$svg = str_replace( '