I am using the debut theme.
I want to have the view cart button replaced with "Continue to Checkout"
I am assuming the cart-popup.liquid needs to be edited.
Here is the screenshot.
<a href="{{ routes.cart_url }}" class="cart-popup__cta-link btn btn--secondary-accent">
{{ 'products.product.view_cart' | t }} (<span data-cart-popup-cart-quantity></span>)
</a>
<div class="cart-popup__dismiss">
<button class="cart-popup__dismiss-button text-link text-link--accent" data-cart-popup-dismiss>
{{ 'cart.general.continue_shopping' | t }}
</button>
</div>
</div>
</div>
Solved! Go to the solution
Replace this piece of code:
<a href="{{ routes.cart_url }}" class="cart-popup__cta-link btn btn--secondary-accent">{{ 'products.product.view_cart' | t }} (<span data-cart-popup-cart-quantity></span>)</a>
With:
<a href="{{ routes.cart_url }}" class="cart-popup__cta-link btn btn--secondary-accent">Continue To Checkout (<span data-cart-popup-cart-quantity></span>)</a>
Let me know if that works!
This is an accepted solution.
Use this instead then:
<a href="/checkout" class="cart-popup__cta-link btn btn--secondary-accent">Continue To Checkout (<span data-cart-popup-cart-quantity></span>)</a>
Let me know!
User | Count |
---|---|
394 | |
202 | |
137 | |
46 | |
42 |