Continue Shopping Button is not going to the proper URL

I need the continue shopping button to go to the all collections page but it is going to the cart page. Can someone check my code? Here is a link to the live site - https://styleforthesouth.com/cart

I am in the cart.ajax.liquid code box:

{{ 'products.product.view_cart' | t }} {%- unless request.design_mode -%} {% if additional_checkout_buttons %}

Or

{{ content_for_additional_checkout_buttons }}
{% endif %} {%- endunless -%}

Thanks!

I would try replacing the line:


with:


I replaced that and it is still going to the cart page. Do I have the new
code in the wrong order?

href=“{{ routes.cart_url }}”>{{ ‘products.product.view_cart’ | t }}

name=“checkout” id=“checkout” value=“{{ ‘cart.general.checkout’ | t }}” />
{%- unless request.design_mode -%}
{% if additional_checkout_buttons %}

Or

type=“submit” name=“continue shopping” id=“continueshopping”
value=“Continue Shopping” />
{{ content_for_additional_checkout_buttons }}

Try this instead:


I am still learning, too. This might work, give it a try.