How to remove "Continue Shopping" button from the Cart page

How can I remove the “Continue Shopping” button from the Cart page?

Hello Tiffany,

The “Continue Shopping” button is added by default through WooCommerce plugin rather than the theme. To remove it, you can try adding the following CSS inside your Appearance >> Customize >> Custom CSS and JS >> Custom CSS box:

.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button, .woocommerce-page .woocommerce-error .button, .woocommerce-page .woocommerce-info .button, .woocommerce-page .woocommerce-message .button {
display: none;
}

Thank you

Thanks, Sanjeev!