Jump to content

Szybka rejestracja - usunięcie wymaganych pól.


virus191

Recommended Posts

Jak usunąć "wymagalność" pól przy szybkiej rejestracji ale je zostawić? w classes/Address.php usunąłem required ale został kod pocztowy - wyłączyłem go w krajach, ale wtedy znika całkiem. Dodatkowo jak usunąć gwiazdki obok tych pól, które już nie są wymagane?

Edited by virus191 (see edit history)
Link to comment
Share on other sites

Szybka rejestracja czy szybkie zamówienie? Jeśli to pierwsze to w Panelu masz opcję czy rejestracja ma obejmować również dodanie adresu czy tylko rejestrację.

To masz przykładowy kod z order-opc-new-account.tpl

 

{elseif $field_name eq "firstname"}
    <div class="required text form-group">
      <label for="firstname">{l s='First name'} <sup>*</sup></label>
       <input type="text" class="text form-control validate" id="firstname" name="firstname" data-validate="isName" value="{if isset($guestInformations) && isset($guestInformations.firstname) && $guestInformations.firstname}{$guestInformations.firstname}{/if}" />
     </div>

Usuń znaczniki <sup>*</sup> oraz usuń "required" z <div class="required text form-group">, czasami niektóre pola są warunkowane, np. {if in_array($field_name, $required_fields)} <sup>*</sup>{/if} - usuń całość "{if in_array($field_name, $required_fields)} <sup>*</sup>{/if}". 

 

A już jak grzebiesz w PHP - zapomniałeś o AddressController.php. Tak na szybko przeleciałem kod tej klasy i nie wiem czy dodatkowo nie musisz sprawdzić tej funkcji:

 

protected function assignAddressFormat()
{
$id_country = is_null($this->_address)? (int)$this->id_country : (int)$this->_address->id_country;
$requireFormFieldsList = AddressFormat::getFieldsRequired();
$ordered_adr_fields = AddressFormat::getOrderedAddressFields($id_country, true, true);
$ordered_adr_fields = array_unique(array_merge($ordered_adr_fields, $requireFormFieldsList));


$this->context->smarty->assign(array(
'ordered_adr_fields' => $ordered_adr_fields,
'required_fields' => $requireFormFieldsList
));
}

Ni chce mi się dalej sprawdzać - to już zostawiam Tobie :)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...