Where you can achieve what your competitors can’t


Hide buy buttons on specific products only on Shopify

Code :

{%- if product.tags contains 'no-buy' -%}
  <style>
    button[name="add"],
    input[name="add"],
    .shopify-payment-button,
    .product-form__buttons,
    .product-form__submit,
    .product-form__quantity,
    .quantity,
    quantity-input,
    .quantity-selector {
      display: none !important;
    }
  </style>
{%- endif -%}