Skip to main content

Remove Stripe "OR" Text Next To Add To Cart Button

If you are using Stripe and on mobile, you may see some text appear saying "OR" or in our screenshot below "OU" in French. This is added by stripe and you can use some simple CSS to remove it. Here is what it might look like.

Step 1: Add CSS

Add this CSS to Divi > Theme Options > Custom CSS to remove.

.wc-stripe-payment-request-button-separator {
display: none !important;
}