Title: Remove &#8216;/brand&#8217; from permalink
Last modified: July 17, 2021

---

# Remove ‘/brand’ from permalink

 *  Resolved [rmn92](https://wordpress.org/support/users/rmn92/)
 * (@rmn92)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/remove-brand-from-permalink/)
 * Hello, how can i remove ‘brand’ from permalink?
    Current slug for a brands page
   is: /brand/name Is there anyway to change the brands slugs to /name
 * The plugin itself is not compatible with Premmerce Permalink Manager for WooCommerce.
 * And adding the following code to function.php has no effect:
 *     ```
       add_filter( 'pwb_taxonomy_with_front', function(){
         return false;
       } );
       ```
   
 * same with:
 *     ```
       function fix271218_pwb_taxonomy_args( $args, $taxonomy, $object_type ) {
   
           if ( 'pwb-brand' === $taxonomy && is_array( $args ) ) {
               /* alter the rewrite with front arg */
               $args[ 'rewrite' ][ 'with_front' ] = false;
           }
           return $args;
       }
       add_filter( 'register_taxonomy_args', 'fix271218_pwb_taxonomy_args', 10, 3 );
       ```
   
 * Thanks

Viewing 1 replies (of 1 total)

 *  [sebastopolys](https://wordpress.org/support/users/sebastopolys/)
 * (@sebastopolys)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/remove-brand-from-permalink/#post-14675963)
 * Hi [@rmn92](https://wordpress.org/support/users/rmn92/)
 * There is no need of coding.
 * Go to WooCommerce >> Settings >> brands and you will open pbw dashboard panel
 * In first tab (“general”) you will see an option that allows you to edit the slug.
 * Screenshot -> [https://snipboard.io/rHhzJu.jpg](https://snipboard.io/rHhzJu.jpg)
 * That will be used on brand page permalinks

Viewing 1 replies (of 1 total)

The topic ‘Remove ‘/brand’ from permalink’ is closed to new replies.

 * ![](https://ps.w.org/perfect-woocommerce-brands/assets/icon-256x256.jpg?rev=2912506)
 * [Perfect Brands for WooCommerce](https://wordpress.org/plugins/perfect-woocommerce-brands/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/perfect-woocommerce-brands/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/perfect-woocommerce-brands/)
 * [Active Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/perfect-woocommerce-brands/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/perfect-woocommerce-brands/reviews/)

## Tags

 * [permalink](https://wordpress.org/support/topic-tag/permalink/)

 * 1 reply
 * 2 participants
 * Last reply from: [sebastopolys](https://wordpress.org/support/users/sebastopolys/)
 * Last activity: [4 years, 10 months ago](https://wordpress.org/support/topic/remove-brand-from-permalink/#post-14675963)
 * Status: resolved