[ad_1]
Hello –
Nevermind, I have written the following filter to override the default args in the plugin and added to my child theme. Works as inteneded now.
add_filter( 'register_taxonomy_args', function( $args, $taxonomy ) {
if( 'yith_product_brand' === $taxonomy && is_array( $args ) )
$args['rewrite']['with_front'] = false;
$args['rewrite']['slug'] = "brands";
return $args;
}, 99, 2 );
