P ptcidol Junior Member Joined Oct 27, 2013 Messages 108 Reaction score 17 Apr 18, 2020 #1 How to remove “brand” from Brand archives. domain.com/brand/BHW to domain.com/BHW
AmazingLicense Junior Member Joined Dec 17, 2019 Messages 179 Reaction score 20 Apr 21, 2020 #2 By "brands" you mean categories? Please provide more details. You can also hide some part of the link with a plugin called Rank Math.
By "brands" you mean categories? Please provide more details. You can also hide some part of the link with a plugin called Rank Math.
D Deleted member 752298 Guest Apr 21, 2020 #3 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' );
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' );