karlosman Posted April 27, 2017 Share Posted April 27, 2017 Hello, Please let me know if anyone knows how to remove the need to fill in some details in the order. Specifically, if I want any billing information other than delivery I need to remove the need to fill in the name, surname and phone. Thank you for your help Link to comment Share on other sites More sharing options...
c64girl Posted April 27, 2017 Share Posted April 27, 2017 (edited) Hello, Please let me know if anyone knows how to remove the need to fill in some details in the order. Specifically, if I want any billing information other than delivery I need to remove the need to fill in the name, surname and phone. Thank you for your help classes/Address.php 'lastname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32), 'firstname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'required' => true, 'size' => 32), to 'lastname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'size' => 32), 'firstname' => array('type' => self::TYPE_STRING, 'validate' => 'isName', 'size' => 32), themes\yourtheme\address.tpl and authentication.tpl from <label for="firstname">{l s='First name'} <sup>*</sup></label> to <label for="firstname">{l s='First name'} </label> and from <label for="lastname">{l s='Last name'} <sup>*</sup></label> to <label for="lastname">{l s='Last name'} </label> Edited April 27, 2017 by c64girl (see edit history) Link to comment Share on other sites More sharing options...
karlosman Posted April 28, 2017 Author Share Posted April 28, 2017 (edited) Hello, thank you for the answer. I misinterpreted it; it's about invoices data. Could you give me an advice please? Thank you Edited April 28, 2017 by karlosman (see edit history) Link to comment Share on other sites More sharing options...
c64girl Posted April 28, 2017 Share Posted April 28, 2017 Hello, thank you for the answer. I misinterpreted it; it's about invoices data. Could you give me an advice please? Thank you What You want to hide ? And from where. Link to comment Share on other sites More sharing options...
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