Woocommerce Store deaktivieren per PHP Function

add_action( 'template_redirect', 'redirect_shop' );

function redirect_shop() {
    if( !current_user_can('manage_options') && (is_shop() OR is_product_category() OR is_product() OR is_cart())){
        //replace the link below to the url it should point to
        header('location:https://example.com');
        exit;
    }
}