Can you please add support for Stripe Payments?
-
Hi, Stripe is a free payment gateway for WooCommerce, but unfortunately, the styling is missing.
Please check:
1) On checkout: http://prntscr.com/odrnui
2) On account dashboard: http://prntscr.com/odro7h
Thanks!
Hello,
Our theme supports the plugin, however, plugin developers change something from time to time. Here is the fix, please add it to the Theme Settings > Custom CSS > Global:
body .woocommerce-checkout #payment li[class*=payment_method_stripe]>label {
padding-left: 5px !important;
}
body #add_payment_method #payment li[class*=payment_method_stripe]>label {
padding-left: 0 !important;
}
body #add_payment_method #payment .woocommerce-PaymentMethod label {
margin-left: 0;
}
.wc-credit-card-form br {
display: none;
}
.woocommerce-SavedPaymentMethods-saveNew {
margin-top: 10px;
}
.stripe-source-errors {
margin-bottom: 0;
}
.stripe-source-errors:empty {
display: none;
}
Best Regards
Thanks, but it doesn’t fix the border with the fields?
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
body .wc-stripe-elements-field,
body .wc-stripe-iban-element-field {
height: 42px;
border: 2px solid rgba(129,129,129,.2);
border-radius: 5px;
}
body .wc-stripe-elements-field:before,
body .wc-stripe-iban-element-field:before {
content: "";
height: 5px;
display: block;
}
Best Regards