Ivan Petermann
@ivanpetermann on WordPress.org
- Member Since: November 3rd, 2016
- Location: Blumenau/SC
- Website: ivanpetermann.com
Contribution History
Ivan Petermann’s badges:- Plugin Developer
- Translation Contributor
- Translation Editor
-
Posted a reply to Custom mask doesn’t work, on the site WordPress.org Forums:
Hi @ksenia8193 Please, try below code. <script type="text/javascript"> jQuery(document).ready(function($){ $("input[type='tel']").mff_mask('+7 (000) 000-00-00'); }); </script> -
Committed [2809354] to Plugins SVN:
Tested up to 6.1 -
Posted a reply to Mask URL, on the site WordPress.org Forums:
Hi @pickme, Try use the below code <script type="text/javascript"> jQuery(document).ready(function($){ $("input[type='url']").attr("placeholder","https://"); }); </script> or just… -
Committed [2767220] to Plugins SVN:
Tested up to 6.0 -
Posted a reply to Minimal size in the phone field, on the site WordPress.org Forums:
Hi @diemano, Please try the code below. <div class="form-prin">[text* nome1 class:campo_form placeholder "Digite o seu… -
Posted a reply to Custom template, on the site WordPress.org Forums:
Hi @selgive1. You can try with the code below. $('input[type="tel"]').attr('placeholder', '+999').on('focus', function() { if ($(this).val().length… -
Posted a reply to Masks on WP backend and frontend, on the site WordPress.org Forums:
Hi @pickme. 1) I can't guarantee it will always work with future installs or updates,… -
Posted a reply to CSS attributes upon invalid entry, on the site WordPress.org Forums:
Hi @pickme, Try with this code. function validation_colors() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $("input[type='text']").mask('A',… -
Posted a reply to Add dash automatically based on Mask, on the site WordPress.org Forums:
Hi @esmaeili, Will the data entered in the field be numeric or text? Can you… -
Posted a reply to Mask for textarea, on the site WordPress.org Forums:
Hi @pickme, Doing a search on Google, I found a code that maybe can help… -
Posted a reply to CSS attributes upon invalid entry, on the site WordPress.org Forums:
Hi @pickme, Did this solution work for you? -
Posted a reply to Mask for textarea, on the site WordPress.org Forums:
Hi @pickme, No, because with textarea the mask library is not working properly. -
Posted a reply to CSS attributes upon invalid entry, on the site WordPress.org Forums:
Hi @pickme, You can try something using the example below. <script type="text/javascript"> jQuery(document).ready(function($) { $("input[name='INPUT_NAME']").mask("(000)… -
Posted a reply to Disallow characters, on the site WordPress.org Forums:
Hi @pickme, Do you still need help with your question below? Is there a way… -
Posted a reply to Minimum number, on the site WordPress.org Forums:
Hi @pickme, Please try with the code below. function custom_masks_form_fields() { ?> <script type="text/javascript"> jQuery(document).ready(function($){… -
Posted a reply to Disallow characters, on the site WordPress.org Forums:
Hi @pickme, Please try with the code below. function custom_masks_form_fields() { ?> <script type="text/javascript"> jQuery(document).ready(function($){… -
Posted a reply to Masks acting odd on Mobile phone, on the site WordPress.org Forums:
Hi @hawaiirealestate, Can you send a picture of the problem? -
Posted a reply to Elemenotr, on the site WordPress.org Forums:
Hi @vlad832, You can try using the code below. <script type="text/javascript"> jQuery(document).ready(function($){ $("input[type='tel']").removeAttr("pattern").addClass("phone_us"); }); </script>… -
Posted a reply to Сustom phone mask in Divi theme, on the site WordPress.org Forums:
Hi @drum90, Please, try... <script type="text/javascript"> jQuery(document).ready(function($){ $("input[name='et_pb_contact_tel_0']").mask('+7 (000) 000-00-00'); }); </script> -
Posted a reply to Сustom phone mask in Divi theme, on the site WordPress.org Forums:
Hi @drum90, You can try with the code below. <script type="text/javascript"> jQuery(document).on('elementor/popup/show', function () {… -
Posted a reply to ACF, on the site WordPress.org Forums:
Hi @abelpinho, This plugin only works on Front-End. If you are using ACF fields in… -
Posted a reply to Plugin conflict with Ninja Forms, please help…, on the site WordPress.org Forums:
Hi @sergo239, Fixed conflict in version 1.9. Please update the plugin and test again. Thank… -
Committed [2664651] to Plugins SVN:
Release 1.9, see readme.txt for the changelog. -
Committed [2663371] to Plugins SVN:
Tested in WordPress 5.9 -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @cwlocal, Great that it worked. If you're just going to use a mask, your… -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @cwlocal, Try adding the script below with an HTML widget in Popup Element. <script… -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @rabelo17, I already replied your email on Nov 7, 2021 at 14:36. Please, check… -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @rabelo17 If you prefer, contact me at ivanpetermann.com/contato/. -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @rabelo17, Try to add the code I sent earlier after the </div> -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @rabelo17, I'm sorry for not replying earlier. I see you are rebuilding the form… -
Posted a reply to Plugin not working anymore for me, on the site WordPress.org Forums:
Hi @rabelo17, The CPF class is entered incorrectly. Below is the recommended. [text* CPF class:cpf… -
Committed [2590316] to Plugins SVN:
Release 1.8, see readme.txt for the changelog. -
Posted a reply to US Fields, on the site WordPress.org Forums:
Hi @925376rv, Thanks for your feedback! Launched the new version [1.7](https://wordpress.org/plugins/masks-form-fields/) with your suggestions. More… -
Committed [2589844] to Plugins SVN:
Release 1.7, see readme.txt for the changelog. -
Posted a reply to US ZIP Code, on the site WordPress.org Forums:
Hi @azgtoth, Try this… <script type="text/javascript"> jQuery(document).ready(function($){ $("input[name='INPUT_NAME']").mask('00000'); }); </script> More details: click here. -
Posted a reply to Max lenght, on the site WordPress.org Forums:
Hi @martydev, Try this... $('#form-field-name202101').attr('maxlength', '35').mask('Z', { 'translation': { Z: { pattern: /[A-Za-z0-9]/, optional: true,… -
Posted a reply to Max lenght, on the site WordPress.org Forums:
Hi @martydev, For that, try using the maxlength attribute. -
Posted a reply to No option to put class, on the site WordPress.org Forums:
Hi @kingdonkeykong, Try with the code below. Change PHONE-INPUT-NAME with input name to apply the… -
Committed [2571065] to Plugins SVN:
Release 1.6, see readme.txt for the changelog. -
Posted a reply to Uppercase field, on the site WordPress.org Forums:
Hi @marlimant, Try with the code below. <script type="text/javascript"> jQuery(document).ready(function($){ $("input.myuppercasefield").on('keypress, keydown, keyup', function (e)… -
Committed [2528221] to Plugins SVN:
Release 1.5, see readme.txt for the changelog. -
Posted a reply to Fix the wp_localize_script call, on the site WordPress.org Forums:
Hi @laurosollero, I already sent a new version 1.5 with this fix. Thank you for… -
Committed [2528189] to Plugins SVN:
Release 1.5, see readme.txt for the changelog. -
Committed [2528188] to Plugins SVN:
Release 1.5, see readme.txt for the changelog. -
Posted a reply to CPF validation, on the site WordPress.org Forums:
Hi @markk26 Yes, try this. add_action('wp_footer', function () { echo "<script type=\"text/javascript\"> jQuery(document).ready(function($) { $(\"input[name='billing_cpf']\").mask('000.000.000-00');… -
Posted a reply to CPF validation, on the site WordPress.org Forums:
Hi @markk26, This plugin only add mask. Script to add mask in input on WooCommerce… -
Posted a reply to Strip the mask before sending, on the site WordPress.org Forums:
Hi @jon999 You can try using the script below! <script> jQuery("form").submit(function () { jQuery("input.phone, input.money").unmask();… -
Posted a reply to WordPress 5.6 jQuery 3.5.1, on the site WordPress.org Forums:
Olá @lukleo, Desculpa por não retornar antes. Vi que já está funcionando a mascara no… -
Posted a reply to Alphanumeric + number caracter mask, on the site WordPress.org Forums:
Hi @levke21 Default translation: '0': {pattern: /\d/}, // (Numbers) '9': {pattern: /\d/, optional: true}, //… -
Committed [2358131] to Plugins SVN:
tagging version 1.4
Developer
-
Masks Form Fields
Active Installs: 8,000+
Plugins
Português do Brasil (Portuguese (Brazil)) Plugins Translation Editor - #pt_BR
-
Masks Form Fields
Active Installs: 8,000+