Chciałem aby w moim sklepie, ustawić wszystkie dane jako opcjonalne. Ponieważ po odznaczeniu checkboxa, było wymuszenie podania danych pomimo tego że nie chciałem faktury.
Zmieniłem w plikach dwa parametry
W AdressFormater.tpl dodałem jako komentarz
/** @var array Default required form fields list */
public static $requireFormFieldsList = [
//'firstname',
//'lastname',
// 'address1',
//'city',
// 'Country:name',
Question
RobertKosk
Dzień dobry, mam wielki problem.
Chciałem aby w moim sklepie, ustawić wszystkie dane jako opcjonalne. Ponieważ po odznaczeniu checkboxa, było wymuszenie podania danych pomimo tego że nie chciałem faktury.
Zmieniłem w plikach dwa parametry
W AdressFormater.tpl dodałem jako komentarz
/** @var array Default required form fields list */
public static $requireFormFieldsList = [
//'firstname',
//'lastname',
// 'address1',
//'city',
// 'Country:name',
Następnie w Addres.tpl
dokonałem zmian takich jak :
lastname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 255),
na cos takiego :
'lastname' => ['type' => self::TYPE_STRING, 'validate' => 'isName','size' => 255],
'firstname' => ['type' => self::TYPE_STRING, 'validate' => 'isName','size' => 255],
...address1 i city (to samo) czyli usunąłem required
(wszystko wcześniej testowałem na środowisku testowym - było ok)
Niestety coś w sklepie się stało, że dzieje się jak na załączonym filmiku.
Przywróciłem już wszystko do ustawień, które miałem przed edycją. Niestety jest nadal tak samo. Wyczyściłem także pamięć podręczną.
Bardzo proszę o pomoc, jak mogę to naprawić, gdzie leży problem.
2024-06-02 23-48-01.mkv
Bardzo bardzo proszę o pomoc.
Link to comment
Share on other sites
0 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