Studio Theme: Remove Footer From Add To Cart Page

Hi there,

Does anyone know how Remove the Footer From Add To Cart Page from the Studio Theme?

I’ve seen this asked but never solved.

Thanks,

Bill

Hi @PPUSA ,

Do you mean at the cart page?

If so, try this instructions below.

  1. Go to Admin page > Online store > themes > Actions > Edit code

  2. Open the theme.liquid under the Layout folder.

  3. Find the code below.

{% section 'footer' %}
  1. Replace the code with the code below
{% unless template.name == 'cart' %}
  {% section 'footer' %}
{% endunless %}
1 Like

Amazing, this worked. So helpful. Thank you!

1 Like