With help of this code, you will be able to disable or remove shop page on woocomerce website.

Copy and paste the code to snippet plugin section which I have mentioned in the video

Last you need to add redirection to homepage using the Redirection plugin

function woocommerce_disable_shop_page() {
    global $post;
    if (is_shop()):
    global $wp_query;
    $wp_query->set_404();
    status_header(404);
    endif;
}
add_action( 'wp', 'woocommerce_disable_shop_page' );