Legendary Posted September 11, 2013 Posted September 11, 2013 How to disable birthdate when you register?
0 rmon Posted July 19, 2020 Posted July 19, 2020 (edited) @Sanasol Thanks Edited July 20, 2020 by rmon
Sanasol Posted September 11, 2013 Posted September 11, 2013 \fluxcp\themes\default\account\create.phpremove 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
hikashin-rae Posted September 1, 2014 Posted September 1, 2014 \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
Question
Legendary
How to disable birthdate when you register?
5 answers to this question
Recommended Posts