marcinkukla Posted July 4, 2017 Share Posted July 4, 2017 (edited) Cześć, Potrzebuje pomocy w dodaniu ograniczenia do pola "numer telefonu". Szukałem informacji gdzie i jak zmienić to pole. Jedyne co udało mi się znaleźć to plik "order-opc-new-account.tpl" gdzie to pole się znajduje. <div class="{if isset($one_phone_at_least) && $one_phone_at_least}required {/if}form-group"> <label for="phone_mobile_invoice">{l s='Mobile phone'}{if isset($one_phone_at_least) && $one_phone_at_least} <sup>*</sup>{/if}</label> <input type="text" class="form-control" name="phone_mobile_invoice" id="phone_mobile_invoice" value="{if isset($guestInformations) && isset($guestInformations.phone) && $guestInformations.phone}{$guestInformations.phone}{/if}" placeholder="{l s='np. 600700800'}" /> </div> Potrzebuje aby każdy numer był ograniczony do 9 cyfr, dodatkowo aby każdy numer usuwał "-" oraz spacje. 123-456-789 -> 123456789 123 456 789 -> 123456789 Czy jest ktoś w stanie pomóc? Edited July 4, 2017 by marcinkukla (see edit history) Link to comment Share on other sites More sharing options...
0 endriu107 Posted July 4, 2017 Share Posted July 4, 2017 Walidacje ilości najlepiej zrobić po stronie kontrolera, natomiast automatyczne usuwanie spacji i myślników można obsłużyć skryptem w js. Link to comment Share on other sites More sharing options...
0 e_com Posted July 5, 2017 Share Posted July 5, 2017 Numer telefonu waliduje funkcja isPhoneNumber() z klasy Validate. Ale robiąc takie ograniczenia jak opisałeś, pozbawisz możliwości zakupu klientów mających telefony u zagranicznych operatorów. Link to comment Share on other sites More sharing options...
Question
marcinkukla
Cześć,
Potrzebuje pomocy w dodaniu ograniczenia do pola "numer telefonu".
Szukałem informacji gdzie i jak zmienić to pole. Jedyne co udało mi się znaleźć to plik "order-opc-new-account.tpl" gdzie to pole się znajduje.
Potrzebuje aby każdy numer był ograniczony do 9 cyfr, dodatkowo aby każdy numer usuwał "-" oraz spacje.
123-456-789 -> 123456789
123 456 789 -> 123456789
Czy jest ktoś w stanie pomóc?
Edited by marcinkukla (see edit history)Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now