How To Remove "Brand" woocommerce permalinks

ptcidol

Junior Member
Joined
Oct 27, 2013
Messages
108
Reaction score
17
How to remove “brand” from Brand archives.
domain.com/brand/BHW to domain.com/BHW
 
By "brands" you mean categories?
Please provide more details.
You can also hide some part of the link with a plugin called Rank Math.
 
Add this to your functions.php:

Code:
function customise_product_brand_slug ( $tax ) {
$tax['rewrite']['slug'] = 'custom-slug'; // Replace 'custom-slug' with your desired slug.
return $tax;
}
add_filter( 'register_taxonomy_product_brand', 'customise_product_brand_slug' );
 
Back
Top