dbbrito Posted February 11, 2020 Share Posted February 11, 2020 olá amigos, alguém sabe como colocar uma string de validação no campo telefone do whmcs, não pode ser no campo customizado, tem que ser no campo padrão do whmcs, pois só vou permitir telefone celular, não posso permitir telefone fixo nesse campo, muito obrigado 0 Quote Link to comment Share on other sites More sharing options...
msaulohenrique Posted February 13, 2020 Share Posted February 13, 2020 1. Baixe jquery.mask.min.js e upem na pasta /templates/seu-tema/js do WHMCS: 2. Usaremos o template SIX nesse tutorial. Vá em templates/six/footer.tpl e insira o código abaixo antes de <script src="{$BASE_PATH_JS}/bootstrap.min.js"></script> <script type="text/javascript"> $("#phonenumber").keydown(function(){ try { $("#phonenumber").unmask(); } catch (e) {} var tamanho = $("#phonenumber").val().length; if(tamanho < 10){ $("#phonenumber").mask("(00) 0000-0000"); } else if(tamanho >= 11){ $("#phonenumber").mask("(00) 00000-0000"); } }); </script> <script src="{$WEB_ROOT}/templates/{$template}/js/jquery.mask.min.js"></script> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.