Page 1 of 1

Hide Age From Birthday List

Posted: 22. January 2013 13:44
by Chumbawamba
Your Portal Version: -
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge

What have you done before the problem was there?
I'm using prime birthdate mod to hide age from users profiles but it still shows up in birthday announcements with boardportal Is there anywhere i can modify the age even if i just change it to 00. i've tried searching and searching and cannot find a solution any help would be appreciated.
Thanks


What have you already tryed to solve the problem?
Searching phpbb.com for solutions

Description and Message
please help

Re: Hide Age From Birthday List

Posted: 22. January 2013 19:13
by archivar
Search them in root / portal / modules / portal_birthday_list.php and remove this code:

Code: Select all

					if ($age = (int) substr($row['user_birthday'], -4))
					{
						$birthday_list .= ' (' . ($now['year'] - $age) . ')';
					}

Code: Select all

					if ($age = (int) substr($row['user_birthday'], -4))
					{
						$birthday_ahead_list .= ' (' . ($now['year'] - $age) . ')';
					}

Re: Hide Age From Birthday List

Posted: 26. May 2013 18:10
by Chumbawamba
Thanks did the trick.