delete a button on collection page

Topic summary

Removing the “Schnell hinzufügen” (quick add) button from a Shopify collection page.

  • The requester wants to delete this button on a specific collection URL.

  • A reply proposes a fix by editing the theme.liquid file: Online Store → Theme → Edit code, then paste a Liquid conditional targeting collection pages before the tag.

  • Technical context: theme.liquid is the main layout file; a Liquid conditional like {% if template.name == “collection” %} … {% endif %} scopes changes to collection templates.

  • An image is provided to show the expected result (button removed), but the shared snippet contains no code inside the conditional, so the exact removal method is not shown.

  • No confirmation from the requester that the solution worked.

  • Status: unresolved/uncertain; key missing detail is the specific code to hide or remove the button within the conditional.

Summarized with AI on December 17. AI used: gpt-5.

Hello I would like to delete button schnell hinzufügen on collection page, could someone help me please : https://kudokid.com/collections/smartwatches-fur-kleines

1 Like
  • Here is the solution for you @elise1
  • Please follow these steps:
  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file
  3. In theme.liquid, paste the below code before and press ‘Save’ to save it
{% if template.name == "collection" %}
  
{% endif %}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like