I use Autocomplete Address for WooCommerce and Claudio Sanches – Correios for WooCommerce plugins to autocomplete the address fields, it works normally in the standard checkout form but it is not working with fluid
best regards
]]>My name is Marcelo, I live in South of Brazil and I′d like to help in translation the plugin to pt_BR.
May I help you?
Tnks in advance!
]]>Obrigado mais uma vez.
]]>I want to share the two files (another-wordpress-classifieds-plugin-pt_BR.po and .mo) that contain the translation but I am new to WordPress and I am not understanding how I can send them to the AWPCP developer via WP’s Get Envolved.
Could anyone show me this way?
]]>Could you please help me to improve this mask code?
It has some error like:
1- it accept letters – I want only numbers in this field.
2- if you input more than 15 digits, the field insert “—” istead of the numbers
thank you
]]>function before_load() { jQuery("#wdform_12_element1").on("keypress keyup",function(){ // pego o valor do telefone e coloco na variavel var texto = jQuery(this).val(); if (texto.length == 0) { texto = texto +"("; } if (texto.length == 3) { texto = texto +")"; } if (texto.length == 5) { if (texto.includes('9')) { texto = texto +"." ; } } if (texto.length == 12) { texto = [texto.slice(0, 8), "-", texto.slice(8)].join(''); } if (texto.length == 15) texto = [texto.slice(0, 8), texto.slice(9, 11), "-", texto.slice(11) ].join(''); jQuery(this).val(texto); } ) }