If you created custom taxonomy and showing in table and you want to remove link then, use those code below.
if( !function_exists('wpt_remove_taxonomy_link') ){
function wpt_remove_taxonomy_link(){
?>
<script>
jQuery(document).ready(function($){
$('.wpt_pa_color a,.wpt_pa_color a').contents().unwrap();
});
</script>
<?php
}
add_action( 'wp_footer', 'wpt_remove_taxonomy_link' );
}
Replace (wpt_pa_color) classes with your own taxonomy classes.
