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;
}
}