ow do you hide the temporarily hide ADD TO CART & ICONS to disable checkout experience?
Hey @ratedjay,
To disable checkout, you’ll need to set all products to out of stock, once this is done, then you can the CSS below to hide the cart icons:
/* Hide cart icon */
a[href="/cart"]{
display:none !important;
}
To add CSS, you can follow the guide below:
Let us know if this helps.