Redirect all product category pages to the shop page in WooCommerce

Redirect all product category pages to the shop page in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'wp', 'wc_redirect_cats_to_shop' );
 
function wc_redirect_cats_to_shop() {
   if ( is_product_category() ) {
      wp_safe_redirect( wc_get_page_permalink( 'shop' ) );
      exit;
   }
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.