Hi, everyone!
I am creating a business which is based on recurring payments. I am from Brazil and here we can’t use Shopify checkout to recurring payments, because here we don’t have Shopify Payments. So I need to remove my “add cart/buy now” buttons and replace it for a new button that redirects my clients to my gateway recurring payments link.
I use the following code to do it:
.product__form-container { display: none!important; }
#shopify-section-product-template .product-single__meta .btn.product-form__cart-submit.btn--secondary-accent {
display: none;
}
#shopify-section-product-template .product-single__meta .shopify-payment-button {
display: none;
}
But a blank space remains before the new button:
What should I do?
Thanks so much,
Ana.

