Hide add to cart button unless logged in

I want to hid the add to cart button for all products unless someone is logged in. I have Craft theme. Is there a code I can use to do this? I know there is an app to hide prices/cart unless logged in, but thought I would see if there is a code that would work.

Hello @goldschdr

You can add code by following these steps to hide add to cart button unless customer logged in

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

{% unless customer %}

.product-form__buttons { display: none !important; }

{% endunless %}

Thank you!

Is it possible to bring it back by removing the code? Because I couldn’t bring it back :slightly_smiling_face: