Jump to content
  • 0

Konfiguracja formularza rejestracyjnego PS1.6.0.9


Rufi

Question

Witam 
potrzebuję wyrzucić z formularza datę urodzenia znalazłem że trzeba modyfikować te pliki

authentication.tpl ;  identity.tpl ; order-opc-new-account.tpl (czy to dla wszystkich wersji ?)

Ale dla laika jak ja to za mało może ktoś podpowie którą część kodu wyciąć w którym pliku?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Dzięki 
czy to jest cały kod daty ??

  <!--
<div class="form-group date-select">
<label>{l s='Date of Birth'}</label>
<div class="row">
<div class="col-xs-4">
<select id="days" name="days" class="form-control">
<option value="">-</option>
{foreach from=$days item=day}
<option value="{$day}" {if ($sl_day == $day)} selected="selected"{/if}>{$day}  </option>
{/foreach}
</select>
{*
{l s='January'}
{l s='February'}
{l s='March'}
{l s='April'}
{l s='May'}
{l s='June'}
{l s='July'}
{l s='August'}
{l s='September'}
{l s='October'}
{l s='November'}
{l s='December'}
*}
</div>
<div class="col-xs-4">
<select id="months" name="months" class="form-control">
<option value="">-</option>
{foreach from=$months key=k item=month}
<option value="{$k}" {if ($sl_month == $k)} selected="selected"{/if}>{l s=$month} </option>
{/foreach}
</select>
</div>
<div class="col-xs-4">
<select id="years" name="years" class="form-control">
<option value="">-</option>
{foreach from=$years item=year}
<option value="{$year}" {if ($sl_year == $year)} selected="selected"{/if}>{$year}  </option>
{/foreach}
</select>
</div>
</div>
</div>
                                          -->
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...