: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
/* global Stripe, wpforms, wpforms_settings, wpforms_stripe, WPForms */
* WPForms Stripe Elements function.
var WPFormsStripeElements = window.WPFormsStripeElements || ( function( document, window, $ ) {
* Public functions and properties.
* Number of page locked to switch.
app.stripe = Stripe( // eslint-disable-line new-cap
wpforms_stripe.publishable_key,
{ 'locale': wpforms_stripe.data.element_locale }
$( document ).on( 'wpformsReady', function() {
$( '.wpforms-stripe form' )
.filter( ( _, form ) => typeof $( form ).data( 'formid' ) === 'number' ) // filter out forms which are locked (formid changed to 'locked-...').
.each( app.setupStripeForm );
$( document ).on( 'wpformsBeforePageChange', app.pageChange );
* Setup and configure a Stripe form.
setupStripeForm: function() {
app.updateFormSubmitHandler( $form );
$form.on( 'wpformsAjaxSubmitActionRequired', app.handleCardActionCallback );
app.updateCardElementStylesModern( $form );
* Setup, mount and configure Stripe Card Element.
* @param {jQuery} $form Form element.
* @param {object} formValidator jQuery Validator object.
* @returns {card|void} Stripe Card element.
setupCardElement: function( $form, formValidator ) {
const $hiddenInput = $form.find( '.wpforms-stripe-credit-card-hidden-input' );
if ( ! $hiddenInput || $hiddenInput.length === 0 ) {
let cardElement = $hiddenInput.data( 'stripe-element' );
let style = wpforms_stripe.data.element_style;
if ( $.isEmptyObject( style ) ) {
style = app.getElementStyleDefault( $hiddenInput );
classes : wpforms_stripe.data.element_classes,
cardElement = app.stripe.elements().create( 'card', cardSettings );
cardElement.mount( $form.find( '.wpforms-field-stripe-credit-card-cardnumber' ).get( 0 ) );
cardElement.on( 'change', function( e ) {
formValidator.hideThese( formValidator.errorsFor( $hiddenInput.get( 0 ) ) );
let message = e.error.message;
if ( 'incomplete_number' === e.error.code || 'invalid_number' === e.error.code ) {
message = wpforms_settings.val_creditcard;
app.displayStripeError( $form, message );
$hiddenInput.data( 'stripe-element', cardElement );
* Get default styles for card settings.
* @param {jQuery} $hiddenInput Input element.
* @returns {object|void} Base styles.
getElementStyleDefault: function( $hiddenInput ) {
if ( ! $hiddenInput || $hiddenInput.length === 0 ) {
const textColor = $hiddenInput.css( 'color' );
const fontSize = $hiddenInput.css( 'font-size' );
let fontFamily = $hiddenInput.css( 'font-family' );
const regExp = /[“”<>!@$%^&*=~`|{}[\]]/;
if ( regExp.test( fontFamily ) || fontFamily.indexOf( 'MS Shell Dlg' ) !== -1 ) {
fontFamily = $( 'p' ).css( 'font-family' );
if ( ! regExp.test( fontFamily ) ) {
style.base.fontFamily = fontFamily;
style.base[ '::placeholder' ].fontFamily = fontFamily;
* Update submitHandler for the forms containing Stripe.
* @param {jQuery} $form Form element.
updateFormSubmitHandler: function( $form ) {
let formValidator = $form.validate(),
formSubmitHandler = formValidator.settings.submitHandler,
cardElement = app.setupCardElement( $form, formValidator ),
$stripeDiv = $form.find( '.wpforms-field-stripe-credit-card-cardnumber' );
// Replace the default submit handler.
formValidator.settings.submitHandler = function() {
let valid = $form.validate().form(),
ccEmpty = $stripeDiv.hasClass( wpforms_stripe.data.element_classes.empty ),
ccRequired = $stripeDiv.data( 'required' ),
condHidden = $stripeDiv.closest( '.wpforms-field-stripe-credit-card' ).hasClass( 'wpforms-conditional-hide' ),
processCard = ccRequired || ( ! ccEmpty && ! ccRequired );
if ( valid && processCard ) {
$form.find( '.wpforms-submit' ).prop( 'disabled', true );
app.createPaymentMethod( $form, cardElement, ccRequired, formSubmitHandler );
// Form is valid, however no credit card to process.
$form.find( '.wpforms-submit' ).prop( 'disabled', false );
return formSubmitHandler( $form );
$form.find( '.wpforms-submit' ).prop( 'disabled', false );
$form.validate().cancelSubmit = true;
* Create a PaymentMethod out of card details provided.
* @param {jQuery} $form Form element.
* @param {card} cardElement Stripe Card element.
* @param {boolean} ccRequired Card field is required.
* @param {Function} formSubmitHandler jQuery Validation SubmitHandler function.
createPaymentMethod: function( $form, cardElement, ccRequired, formSubmitHandler ) {
app.stripe.createPaymentMethod( 'card', cardElement, {
name: $form.find( '.wpforms-field-stripe-credit-card-cardname' ).val(),
} ).then( function( result ) {
if ( result.error && ccRequired ) {
$form.find( '.wpforms-submit' ).prop( 'disabled', false );
app.displayStripeError( $form, result.error.message );
$form.validate().cancelSubmit = true;
$form.find( '.wpforms-stripe-payment-method-id' ).remove();
if ( result.paymentMethod ) {
$form.append( '<input type="hidden" class="wpforms-stripe-payment-method-id" name="wpforms[payment_method_id]" value="' + result.paymentMethod.id + '">' );
formSubmitHandler( $form );
* Handle 'action_required' server response.
* @param {object} e Event object.
* @param {object} json Data returned form a server.
handleCardActionCallback: function( e, json ) {
if ( json.success && json.data.action_required ) {
app.stripe.handleCardPayment(
json.data.payment_intent_client_secret
).then( function( result ) {
app.handleCardPaymentCallback( $form, result );
* Callback for Stripe 'handleCardPayment' method.
* @param {jQuery} $form Form element.
* @param {object} result Data returned by 'handleCardPayment'.
handleCardPaymentCallback: function( $form, result ) {
app.formAjaxUnblock( $form );
$form.find( '.wpforms-field-stripe-credit-card-cardnumber' ).addClass( wpforms_stripe.data.element_classes.invalid );
app.displayStripeError( $form, result.error.message );
} else if ( result.paymentIntent && 'succeeded' === result.paymentIntent.status ) {
$form.find( '.wpforms-stripe-payment-method-id' ).remove();
$form.find( '.wpforms-stripe-payment-intent-id' ).remove();
$form.append( '<input type="hidden" class="wpforms-stripe-payment-intent-id" name="wpforms[payment_intent_id]" value="' + result.paymentIntent.id + '">' );
wpforms.formSubmitAjax( $form );
app.formAjaxUnblock( $form );
* Display a field error using jQuery Validate library.
* @param {jQuery} $form Form element.
* @param {object} message Error message.
displayStripeError: function( $form, message ) {
const fieldName = $form.find( '.wpforms-stripe-credit-card-hidden-input' ).attr( 'name' ),
$stripeDiv = $form.find( '.wpforms-field-stripe-credit-card-cardnumber' );
errors[fieldName] = message;
wpforms.displayFormAjaxFieldErrors( $form, errors );
// Switch page for the multipage form.
if ( ! $stripeDiv.is( ':visible' ) && $form.find( '.wpforms-page-indicator-steps' ).length > 0 ) {
// Empty $json object needed to change the page to the first one.
wpforms.setCurrentPage( $form, {} );
wpforms.scrollToError( $stripeDiv );
* @param {jQuery} $form Form element.
formAjaxUnblock: function( $form ) {
let $container = $form.closest( '.wpforms-container' ),
$spinner = $form.find( '.wpforms-submit-spinner' ),
$submit = $form.find( '.wpforms-submit' ),
submitText = $submit.data( 'submit-text' );
$submit.text( submitText );
$submit.prop( 'disabled', false );
$container.css( 'opacity', '' );
* Callback for a page changing.
* @param {Event} event Event.
* @param {int} currentPage Current page.
* @param {jQuery} $form Current form.
* @param {string} action The navigation action.
pageChange: function( event, currentPage, $form, action ) {
const $stripeDiv = $form.find( '.wpforms-field-stripe-credit-card-cardnumber' ),
ccComplete = $stripeDiv.hasClass( wpforms_stripe.data.element_classes.complete ),
ccEmpty = $stripeDiv.hasClass( wpforms_stripe.data.element_classes.empty ),
ccInvalid = $stripeDiv.hasClass( wpforms_stripe.data.element_classes.invalid );
// Stop navigation through page break pages.
! $stripeDiv.is( ':visible' ) ||
( ! $stripeDiv.data( 'required' ) && ccEmpty ) ||
( app.lockedPageToSwitch && app.lockedPageToSwitch !== currentPage ) ||
$stripeDiv.find( '.wpforms-error' ).remove();
app.lockedPageToSwitch = currentPage;
app.displayStripeError( $form, wpforms_stripe.i18n.empty_details );
* Get CSS property value.
* In case of exception return empty string.
* @param {jQuery} $element Element.
* @param {string} property Property.
* @return {string} Property value.
getCssPropertyValue( $element, property ) {
return $element.css( property );
* Update Card Element styles in Modern Markup mode.
* @param {jQuery} $form Form object.
updateCardElementStylesModern( $form ) {
// Should work only in Modern Markup mode.
if ( ! window.WPForms || ! WPForms.FrontendModern || ! $.isEmptyObject( wpforms_stripe.data.element_style ) ) {
if ( ! $form || $form.length === 0 ) {
$form.find( '.wpforms-stripe-credit-card-hidden-input' ).each( function() {
const $hiddenInput = $( this );
const cardElement = $hiddenInput.data( 'stripe-element' );
fontSize: app.getCssPropertyValue( $hiddenInput, 'font-size' ),
colorText: app.getCssPropertyValue( $hiddenInput, 'color' ),
color: inputStyle.colorText,
fontSize: inputStyle.fontSize,
color: WPForms.FrontendModern.getColorWithOpacity( inputStyle.colorText, '0.5' ),
fontSize: inputStyle.fontSize,
color: inputStyle.colorText,
cardElement.update( { style: styles } );
// Provide access to public functions/properties.
}( document, window, jQuery ) );
WPFormsStripeElements.init();