Jump to content
  • 0

How to disable birthdate


Question

5 answers to this question

Recommended Posts

Posted

\fluxcp\themes\default\account\create.php

remove 75-78 lines

<tr>
	<th><label><?php echo htmlspecialchars(Flux::message('AccountBirthdateLabel')) ?></label></th>
	<td><?php echo $this->dateField('birthdate',null,0) ?></td>
</tr>

 
\fluxcp\modules\account\create.php
 
find 

$birthdate = $params->get('birthdate_date');

change to
 

$birthdate = date("Y-m-d");

and birthdate will be register date

Posted

\fluxcp\themes\default\account\create.php

remove 75-78 lines

<tr>
	<th><label><?php echo htmlspecialchars(Flux::message('AccountBirthdateLabel')) ?></label></th>
	<td><?php echo $this->dateField('birthdate',null,0) ?></td>
</tr>

 

\fluxcp\modules\account\create.php

 

find 

$birthdate = $params->get('birthdate_date');

change to

 

$birthdate = date("Y-m-d");

and birthdate will be register date

 

Thanks its work at mine :D

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...