Change Validation Messages for Required Fields – WPML

/** * Customize strings for WPForms form validation * * @link https://wpforms.com/developers/change-validation-messages-for-wpml/ */ function wpforms_dev_frontend_strings( $strings ) { $currentLanguage = defined( ‘ICL_LANGUAGE_CODE’ ) ? ICL_LANGUAGE_CODE : null; switch ( $currentLanguage ) { case ‘fr’: $strings[ ‘val_required’ ] = ‘Ce champ…Continue reading

Changing Multiple Properties on Store Credit Accordion Checkout Page

add_filter( ‘acfw_funnelkit_store_credit_field_labels’, function( $labels ) { $labels[‘toggle_text’] = ‘Apply Store Credit’; $labels[‘placeholder’] = ‘Enter your store credit code’; $labels[‘balance_text’] = ‘%s Your Available Credit:’; $labels[‘instructions’] = ‘Use your store credit to get discounts on your purchase.’; return $labels; });Continue reading

Change “Email” On Donation Form

add_filter( ‘charitable_default_donation_fields’, ‘charitable_change_default_donation_fields’, 10, 1); function charitable_change_default_donation_fields( $defaults ) { $defaults[’email’][‘donation_form’][‘label’] = ‘Please Provide Email’; return $defaults; }Continue reading