Login     Sign up
Adding years and editing countries
Pierre (@planetefrancaise)
Join date: Jan 2nd 2011
Community posts: 32
View Profile
Send Message

Hello,
Can anybody tell me how to add years 2004-2012 for the birthdates and edit the countries list?
Thanks

162 months ago
Eliz zeta (@eliz)
Join date: Nov 29th 2010
Community posts: 153
View Profile
Send Message

1- country list : it s on your yoursite.com/admin/config

2- birthdates :

to modify this when user register:
in includes-libs- member.module.php
function signup
and in user account :
includes-libs- account.module.php
in function index

search and modify
[code]
<select name="birthyear" class="fpost">
');
$year_from = date("Y",time()) - 18;
$year_to = date("Y",time()) - 70;
[/code]

162 months ago