Remove add to cart and buy now button Blockshop theme

Hello,

I am attempting to remove both the add to cart button, and buy now button from my product pages, but have no success. Blockshop doesn’t have theme.css option.

Website

Password: felisaves

Any help would be highly appreciated.

Thank you

1 Like

Hi @KurePro ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme–critical.css->paste below code at the bottom of the file:
.product-page--cart-form {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

@KurePro

oh sorry for that issue can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme–async.css->paste below code at the bottom of the file.
.product-form--button-container, .product-form--smart-payment-buttons {
    display: none !important;
}

This worked perfectly. Thank you sir!