Add to Cart & Checkuot buttons dissapeared!

I just noticed today that the button for add to cart disappeared just in CAD but the checkout is not there for any currency :S Please help! https://tucci-italy.com/

2 Likes

HI @cesarsosa ,

Not sure where the code is from but it is because the opacity is 0. You can fix this by using the code below

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the theme.css
  3. Paste the code below at the very bottom of the file.
button.ProductForm__AddToCart.Button.Button--secondary.Button--full, .shopify-payment-button {
    opacity: 1 !important;
}

Outcome:

1 Like

@cesarsosa

yes, please add this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/custom.css ->paste below code at the bottom of the file.
button.ProductForm__AddToCart.Button.Button--secondary.Button--full, .shopify-payment-button {
    opacity: 1 !important;
}
1 Like

Ok, I can see some now, but they are not clickables, also the checkout still missing. I see there is something odd it says: pointer-events: none ;

I don’t know how to remove it.

Thank you!