HI David,
You need to do a code change to do that. Please open this file snippets/cart-drawer.liquid
Find the following code:
<button
type="submit"
id="CartDrawer-Checkout"
class="cart__checkout-button button"
name="checkout"
form="CartDrawer-Form"
{% if cart == empty %}
disabled
{% endif %}
>
{{ 'sections.cart.checkout' | t }}
</button>
Replace it with:
<a
href="{{ routes.cart_url }}"
class="cart__checkout-button button button--full-width"
{% if cart == empty %}
aria-disabled="true"
tabindex="-1"
{% endif %}
>
{{ 'sections.cart.checkout' | t }}
</a>
