Hello,
Here is an example on how to remove it from the Checkout page:
add_action( 'woocommerce_checkout_billing', function () {
    remove_action( 'woocommerce_checkout_billing', array( XTS\Modules\Shipping_Progress_Bar\Main::get_instance(), 'render_shipping_progress_bar_with_wrapper' ) );
}, 5 );
Based on this code you can add action that suits you. 
Kind Regards