How to change Custom Permalink for Taxonomy? (remove the slashes from term-slug)

I found the solution…

add_filter( 'term_link', 'remove_slash_taxonomy', 10, 2 );

function remove_slash_taxonomy( $permalink, $term ) {
        if ($term->taxonomy == 'nieruchomosc') $permalink = str_replace("https://wordpress.stackexchange.com/".$term->slug."https://wordpress.stackexchange.com/", $term->slug, $permalink);
        return $permalink;
}