/* Removing “mail.readwrite” for the Outlook Mailer * * Original doc: https://wpmailsmtp.com/docs/removing-mail-readwrite-scope-for-the-outlook-mailer/ */ add_filter( ‘wp_mail_smtp_pro_providers_outlook_auth_get_scopes’, function ( $scopes ) { foreach ( $scopes as $key => $scope ) { if ( $scope === ‘https://graph.microsoft.com/mail.readwrite’ ) { unset( $scopes[ $key ]…Continue reading
google-site-verification=g9wMfW921xePieAMvJ8eCKo4HdXvhwUEJzdrSbJ_HCgContinue reading
/** * 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
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